configs/neovim: only install nil on unstable, better color for search

This commit is contained in:
Aaron Bieber 2022-10-26 10:26:19 -06:00
parent 9400f6b24c
commit 7067e9b9a5
No known key found for this signature in database
2 changed files with 23 additions and 22 deletions

View File

@ -14,6 +14,7 @@ cmd("hi! Normal ctermbg=NONE ctermfg=NONE");
cmd("hi! Normal ctermbg=NONE ctermfg=NONE");
cmd("hi! SignColumn NONE");
cmd("hi! LineNr NONE");
cmd("hi! Search cterm=NONE ctermbg=yellow");
require("compe").setup {
enabled = true;

View File

@ -106,28 +106,28 @@ in {
kernel.sysctl = { "net.ipv4.tcp_keepalive_time" = 60; };
};
environment.systemPackages = with pkgs; [
age
apg
bind
btop
direnv
git-sync
got
jq
lz4
minisign
mosh
nil
nix-diff
nixfmt
nix-index
nix-top
pass
rbw
taskwarrior
tmux
];
environment.systemPackages = with pkgs;
[
age
apg
bind
btop
direnv
git-sync
got
jq
lz4
minisign
mosh
nix-diff
nixfmt
nix-index
nix-top
pass
rbw
taskwarrior
tmux
] ++ (if isUnstable then [ nil ] else [ ]);
environment.interactiveShellInit = ''
alias vi=nvim