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.
environment.systemPackages = with pkgs; [
git
screen
killall
];

View File

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