Move common.lua back to init.lua, bad idea, not worth it

This commit is contained in:
Evie Litherland-Smith 2023-06-04 10:44:44 +01:00
parent 1fca774106
commit 2dd9913802
2 changed files with 36 additions and 1 deletions

1
.gitignore vendored
View file

@ -3,4 +3,3 @@ lazy-lock.json
*.swp
.DS_Store
.luarc.json
init.lua

View file

@ -1,6 +1,7 @@
vim.g.mapleader = " "
vim.g.maplocalleader = ","
vim.opt.termguicolors = true
require "ui.fillchars"
-- bootstrap lazy.nvim
local lazypath = vim.fn.stdpath "data" .. "/lazy/lazy.nvim"
@ -15,8 +16,33 @@ if not vim.loop.fs_stat(lazypath) then
}
end
vim.opt.rtp:prepend(lazypath)
require("lazy").setup {
spec = "plugins",
install = { colorscheme = { "tokyonight" } },
ui = {
border = "rounded",
icons = { lazy = " " },
},
diff = { cmd = "diffview.nvim" },
checker = { enabled = true, frequency = 3600 },
performance = {
rtp = {
disabled_plugins = {
"gzip",
"matchit",
"matchparen",
"netrwPlugin",
"tarPlugin",
"tohtml",
"tutor",
"zipPlugin",
},
},
},
}
-- Set vim options
vim.cmd [[colorscheme tokyonight]]
vim.opt.shiftwidth = 4
vim.opt.expandtab = true
vim.opt.number = true
@ -27,6 +53,16 @@ vim.opt.splitbelow = true
vim.opt.splitright = true
vim.opt.foldlevelstart = 99
-- Global
vim.g.loaded_perl_provider = 0
-- Common keymaps
vim.keymap.set("i", "jk", "<esc>")
vim.keymap.set("n", "<leader>l", "<cmd>Lazy<CR>")
-- GUI settings
if vim.g.neovide then
require "ui.neovide"
elseif vim.g.vscode then
require "ui.vscode"
end