1
0
Fork 0
mirror of https://github.com/inexcode/nixos-config.git synced 2024-12-12 07:48:47 +00:00
nixos-config/Desktop/modules/my_vim.nix

30 lines
501 B
Nix
Raw Normal View History

2024-12-02 09:40:42 +00:00
{ neovim, vimUtils, vimPlugins, stdenv, fetchgit }:
2020-10-16 11:33:25 +00:00
2024-12-02 09:40:42 +00:00
let
custom_config = ''
let g:airline_powerline_fonts = 1
let g:airline_theme='dark'
'';
in
neovim.override {
vimAlias = true;
configure = {
customRC = custom_config;
vam.pluginDictionaries = [
{
names = [
"vim-sensible"
"vim-airline"
"vim-airline-themes"
"nerdtree"
"vim-nix"
"dart-vim-plugin"
"coc-nvim"
];
}
];
};
2020-10-16 11:33:25 +00:00
}