*: fs restructure

This commit is contained in:
steveej 2018-09-04 13:13:52 +02:00
parent 08d0f5453a
commit 43c92a7340
15 changed files with 0 additions and 0 deletions

View file

@ -0,0 +1,15 @@
{ commonRC, ... } @ args :
(import ../../pkg-configuration/vim-derivates/neovim.nix args // {
additionalRC = commonRC + ''
" deoplete {
let g:deoplete#enable_at_startup = 1
let g:deoplete#enable_smart_case = 1
" }
'';
additionalPlugins = [
"deoplete-go"
"deoplete-nvim"
"vim-go"
];
})