mirror of
https://github.com/buckley310/nixos-config.git
synced 2024-11-09 18:47:02 +00:00
move lua code out of vimscript
This commit is contained in:
parent
aedbc66685
commit
dd24780649
3 changed files with 2 additions and 5 deletions
|
@ -17,6 +17,7 @@
|
|||
];
|
||||
customRC = ''
|
||||
source ${./init.vim}
|
||||
luafile ${./init.lua}
|
||||
'';
|
||||
};
|
||||
};
|
||||
|
|
1
modules/vim/init.lua
Normal file
1
modules/vim/init.lua
Normal file
|
@ -0,0 +1 @@
|
|||
require("bufferline").setup{}
|
|
@ -55,8 +55,3 @@ nnoremap <space>k <C-W>k
|
|||
nnoremap <space>l <C-W>l
|
||||
nnoremap <space>v <C-W>v
|
||||
nnoremap <space>s <C-W>s
|
||||
|
||||
|
||||
lua << EOF
|
||||
require("bufferline").setup{}
|
||||
EOF
|
||||
|
|
Loading…
Reference in a new issue