This commit is contained in:
caandt 2025-03-11 20:52:10 -05:00
parent 208baf5b55
commit 675753b901
2 changed files with 6 additions and 1 deletions

View file

@ -24,6 +24,7 @@
bufferline-nvim
nvim-colorizer-lua
lazydev-nvim
Coqtail
neorg
(pkgs.vimUtils.buildVimPlugin {
pname = "undotree";
@ -46,7 +47,7 @@
lua-language-server
];
withRuby = false;
withPython3 = false;
withPython3 = true;
withNodeJs = false;
};
xdg.configFile."nvim/init.lua".text = "require('init')";

View file

@ -10,3 +10,7 @@ map('n', '<leader>h', '<cmd>sp<cr>', {desc = "split [H]orizontal"})
map('n', 'q:', '<nop>')
map('n', '<leader>cd', vim.diagnostic.open_float, {desc = "[C]ode [D]iagnostic"})
map('n', 'x', '"_x')
map('n', '<c-a-j>', '<cmd>CoqNext<cr>')
map('n', '<c-a-k>', '<cmd>CoqUndo<cr>')
map('i', '<c-a-j>', '<cmd>CoqNext<cr>')
map('i', '<c-a-k>', '<cmd>CoqUndo<cr>')