Added screen package; more neovim config

This commit is contained in:
Random936 2024-07-21 22:28:01 -07:00
parent e58de4ae96
commit 987fcbf762
2 changed files with 10 additions and 4 deletions

View File

@ -32,6 +32,7 @@
# List packages installed in system profile. # List packages installed in system profile.
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
git git
screen
killall killall
]; ];

View File

@ -2,10 +2,15 @@
programs.neovim = { programs.neovim = {
enable = true; enable = true;
vimAlias = true; vimAlias = true;
coc = {
enable = true;
settings = {
"diagnostic.checkCurrentLine" = true;
};
}; };
home.file = { plugins = with pkgs.vimPlugins; [
".config/nvim/init.vim".source = ../dotfiles/.config/nvim/init.vim; vim-airline
".config/nvim/coc-settings.json".source = ../dotfiles/.config/nvim/init.vim; ];
}; };
} }