mirror of
https://github.com/inexcode/nixos-config.git
synced 2024-12-12 07:48:47 +00:00
30 lines
501 B
Nix
30 lines
501 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"
|
|
];
|
|
}
|
|
];
|
|
};
|
|
}
|
|
|
|
|