nixvim remap leader to space
This commit is contained in:
parent
f6304cf25f
commit
d180075914
|
@ -19,7 +19,11 @@
|
||||||
enable = true;
|
enable = true;
|
||||||
enableMan = true; # install man pages for nixvim options
|
enableMan = true; # install man pages for nixvim options
|
||||||
clipboard.register = "unnamedplus"; # use system clipboard instead of internal registers
|
clipboard.register = "unnamedplus"; # use system clipboard instead of internal registers
|
||||||
globals.mapleader = ";";
|
globals.mapleader = " ";
|
||||||
|
|
||||||
|
extraConfigLua = ''
|
||||||
|
vim.api.nvim_set_keymap("", '<Space>', '<Nop>', { noremap = true, silent = true })
|
||||||
|
'';
|
||||||
|
|
||||||
extraConfigVim = ''
|
extraConfigVim = ''
|
||||||
" ================ Persistent Undo ==================
|
" ================ Persistent Undo ==================
|
||||||
|
|
Loading…
Reference in New Issue