infra/derivations/dev/neovim-go.nix
Stefan Junker b0d23b238b derivations/dev: improve go shell
- use vim and neovim
- combine common vim configuration
2016-11-17 20:45:01 +01:00

15 lines
319 B
Nix

{ 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"
];
})