diff options
Diffstat (limited to 'nvim.lua')
-rw-r--r-- | nvim.lua | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -150,7 +150,7 @@ require('lazy').setup({ | |||
150 | 'navarasu/onedark.nvim', | 150 | 'navarasu/onedark.nvim', |
151 | priority = 1000, | 151 | priority = 1000, |
152 | config = function() | 152 | config = function() |
153 | -- vim.cmd.colorscheme 'onedark' | 153 | vim.cmd.colorscheme 'onedark' |
154 | end, | 154 | end, |
155 | }, | 155 | }, |
156 | 156 | ||
@@ -276,7 +276,7 @@ vim.o.termguicolors = true | |||
276 | 276 | ||
277 | -- Keymaps for better default experience | 277 | -- Keymaps for better default experience |
278 | -- See `:help vim.keymap.set()` | 278 | -- See `:help vim.keymap.set()` |
279 | vim.keymap.set({ 'n', 'v' }, '<Space>', '<Nop>', { silent = true }) | 279 | -- vim.keymap.set({ 'n', 'v' }, '<Space>', '<Nop>', { silent = true }) |
280 | 280 | ||
281 | -- Use suda.vim to run sudo, or terminal prompt fails | 281 | -- Use suda.vim to run sudo, or terminal prompt fails |
282 | -- See more details at https://github.com/neovim/neovim/issue | 282 | -- See more details at https://github.com/neovim/neovim/issue |