1
0
Fork 0

Nvim configuration.

This commit is contained in:
Arthur Khachaturov 2023-12-01 19:05:24 +03:00
parent 8577646177
commit bb8a0eaec7
10 changed files with 61 additions and 37 deletions

View file

@ -4,12 +4,16 @@ vim.g.maplocalleader = ' '
vim.keymap.set({ 'n', 'v' }, '<Space>', '<Nop>', { silent = true })
-- Load modules
require("utils.lazy").lazy_init()
require("lazy").setup("plugins", {
change_detection = {
enabled = false,
notify = false,
},
})
if vim.g.vscode then
require("config.mappings")
else
require("utils.lazy").lazy_init()
require("lazy").setup("plugins", {
change_detection = {
enabled = false,
notify = false,
},
})
require("config")
require("config")
end