neo2005/config/options.nix
Barna Máté 447acf4d50 few plugins
- added activity watcher & auto startup
- temp shades of purple them ti'll I make my own (hopefully)
2024-12-11 16:31:34 +01:00

24 lines
358 B
Nix

{ pkgs, ... }: {
#colorschemes.cyberdream.enable = true;
colorscheme = "shades_of_purple";
opts = {
number = true;
relativenumber = true;
};
# Set <Space> as leader
globals.mapleader = " ";
autoCmd = [
# Start aw-watcher-vim on startup
{
command = ":AWStart'";
event = [
"VimEnter"
];
}
];
}