nix/home/file/nvim/module/key/Autocomplete.nix

10 lines
178 B
Nix
Raw Normal View History

2024-11-04 04:37:29 +03:00
{ ... }: {
text = ''
-- Autocomplete.
rekey_input("<C-space>", "<C-n>")
2024-04-06 03:03:58 +03:00
2024-11-04 04:37:29 +03:00
-- LSP autocomplete.
rekey_normal("<C-space>", "<cmd>lua vim.lsp.buf.code_action()<cr>")
'';
2024-04-06 03:03:58 +03:00
}