infra/_archive/environments/dev/go/neovim-go.nix

12 lines
305 B
Nix
Raw Normal View History

2022-10-31 11:04:38 +01:00
{ 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
" }
'';
2022-10-31 11:04:38 +01:00
additionalPlugins = [ "deoplete-go" "deoplete-nvim" "vim-go" ];
})