Nvim configuration.
This commit is contained in:
parent
8577646177
commit
bb8a0eaec7
10 changed files with 61 additions and 37 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue