remove vim

This commit is contained in:
foosinn 2020-06-11 19:56:28 +02:00
parent 62df020081
commit 2d515b8b6a
2 changed files with 0 additions and 31 deletions

View file

@ -1,30 +0,0 @@
with import <nixpkgs> {};
vim_configurable.customize {
name = "vim";
vimrcConfig.customRC = ''
set hidden
" langserver
let g:LanguageClient_serverCommands = {
\ 'rust': ['rust-analyzer'],
\ 'python': ['pyls'],
\ }
let g:deoplete#enable_at_startup = 1
'';
vimrcConfig.packages.myVim = with pkgs.vimPlugins; {
start = [
airline
easymotion
fugitive
fzf
LanguageClient-neovim
surround
syntastic
vim-mucomplete
];
};
}