Fun artemision changes

Signed-off-by: ahuston-0 <aliceghuston@gmail.com>
This commit is contained in:
2024-03-28 02:39:29 -04:00
committed by Alice Huston
parent 6a419c3143
commit 97337d0714
8 changed files with 114 additions and 6 deletions

View File

@ -68,11 +68,25 @@
enableZshIntegration = true;
};
neovim = {
enable = true;
defaultEditor = true;
vimAlias = true;
vimdiffAlias = true;
extraConfig = ''
set bg=dark
set tabstop=2
set shiftwidth=2
set expandtab
set smartindent
'';
};
nix-index = {
enable = true;
enableZshIntegration = true;
};
tmux.enable = true;
topgrade = {
enable = true;
settings = {
@ -89,5 +103,10 @@
services.ssh-agent.enable = true;
# TODO: add environment bs
home.sessionVariables = {
EDITOR = "nvim";
};
home.stateVersion = "23.11";
}