mirror of
https://github.com/inexcode/nixos-config.git
synced 2024-11-23 15:01:26 +00:00
26 lines
458 B
Nix
26 lines
458 B
Nix
{neovim, vimUtils, vimPlugins, stdenv, fetchgit}:
|
|
|
|
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"
|
|
];
|
|
}
|
|
];
|
|
};
|
|
}
|
|
|