coqtail
This commit is contained in:
parent
208baf5b55
commit
675753b901
|
|
@ -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')";
|
||||
|
|
|
|||
|
|
@ -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>')
|
||||
|
|
|
|||
Loading…
Reference in a new issue