Add direnv
This commit is contained in:
parent
3d75f34251
commit
0e763539b7
1 changed files with 88 additions and 78 deletions
|
|
@ -11,7 +11,9 @@
|
|||
meslo-lg
|
||||
nerdfonts
|
||||
];
|
||||
programs.neovim = {
|
||||
|
||||
programs = {
|
||||
neovim = {
|
||||
enable = true;
|
||||
vimAlias = true;
|
||||
plugins = with pkgs; [
|
||||
|
|
@ -43,13 +45,13 @@
|
|||
autocmd BufWritePost ~/.Xresources,~/.Xdefaults !xrdb %
|
||||
'';
|
||||
};
|
||||
programs.bat.enable = true;
|
||||
programs.jq.enable = true;
|
||||
programs.fzf.enable = true;
|
||||
programs.lesspipe.enable = true;
|
||||
programs.zathura.enable = true;
|
||||
programs.pazi.enable = true;
|
||||
programs.htop = {
|
||||
bat.enable = true;
|
||||
jq.enable = true;
|
||||
fzf.enable = true;
|
||||
lesspipe.enable = true;
|
||||
zathura.enable = true;
|
||||
pazi.enable = true;
|
||||
htop = {
|
||||
enable = true;
|
||||
hideUserlandThreads = true;
|
||||
highlightBaseName = true;
|
||||
|
|
@ -57,12 +59,12 @@
|
|||
meters.left = [ "LeftCPUs" "Memory" "Swap" ] ;
|
||||
meters.right = [ "RightCPUs" "Tasks" "LoadAverage" "Uptime" ];
|
||||
};
|
||||
programs.broot = {
|
||||
broot = {
|
||||
enable = true;
|
||||
enableZshIntegration = true;
|
||||
};
|
||||
programs.command-not-found.enable = true;
|
||||
programs.zsh = {
|
||||
command-not-found.enable = true;
|
||||
zsh = {
|
||||
enable = true;
|
||||
history = {
|
||||
save = 50000;
|
||||
|
|
@ -94,10 +96,18 @@
|
|||
}
|
||||
];
|
||||
};
|
||||
direnv = {
|
||||
enable = true;
|
||||
enableNixDirenvIntegration = true;
|
||||
enableZshIntegration = true;
|
||||
};
|
||||
};
|
||||
|
||||
home.file.".config/ranger" = {
|
||||
source = ./files/ranger;
|
||||
recursive = true;
|
||||
};
|
||||
|
||||
home.file.".config/ranger/plugins" = {
|
||||
source = builtins.fetchGit {
|
||||
url = "git://github.com/alexanderjeurissen/ranger_devicons.git";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue