diff options
| author | Andrew <admonty1@protonmail.com> | 2025-08-23 11:15:46 -0400 |
|---|---|---|
| committer | Andrew <admonty1@protonmail.com> | 2025-08-23 11:15:46 -0400 |
| commit | 4008f6f27bf237152f5f2788a642c769efc9bc48 (patch) | |
| tree | 63842540e16e39b677927b74894e2aeea5b83daf | |
| parent | obsidian config with hacky zoom fix (diff) | |
| download | nixos-4008f6f27bf237152f5f2788a642c769efc9bc48.tar.gz nixos-4008f6f27bf237152f5f2788a642c769efc9bc48.tar.bz2 nixos-4008f6f27bf237152f5f2788a642c769efc9bc48.zip | |
zsh and tmux config added
Diffstat (limited to '')
| -rw-r--r-- | sh.nix | 33 | ||||
| -rw-r--r-- | tmux.nix | 2 |
2 files changed, 19 insertions, 16 deletions
@@ -4,7 +4,6 @@ pkgs, ... }: -let myAliases = { ll = "ls -l"; ".." = "cd .."; @@ -30,22 +29,26 @@ in theme = ""; }; initContent = '' - # Powerlevel10k configuration - source ${pkgs.zsh-powerlevel10k}/share/zsh-powerlevel10k/powerlevel10k.zsh-theme - source ${./.p10k.zsh} - # Initialize zoxide - eval "$(zoxide init zsh)" + # Powerlevel10k configuration + source ${pkgs.zsh-powerlevel10k}/share/zsh-powerlevel10k/powerlevel10k.zsh-theme + source ${./.p10k.zsh} + # Initialize zoxide + eval "$(zoxide init zsh)" - # Initialize fzf - source <(fzf --zsh) + # Initialize fzf + source <(fzf --zsh) - # Source fzf-tab (needs to be after fzf) - source ${pkgs.zsh-fzf-tab}/share/fzf-tab/fzf-tab.plugin.zsh + # Source fzf-tab (needs to be after fzf) + source ${pkgs.zsh-fzf-tab}/share/fzf-tab/fzf-tab.plugin.zsh - # Custom aliases - alias ll="ls -la" - alias gs="git status" + # Custom aliases + alias ll="ls -la" + alias gs="git status" - bindkey '^ ' autosuggest-execute - ''; }; + bindkey '^ ' autosuggest-execute + ''; + }; + programs.fish = { + enable = true; + }; } @@ -1,7 +1,7 @@ { config, pkgs, ... }: { - programs.tmux = { + programs.tmux = { enable = true; terminal = "xterm-256color"; historyLimit = 5000; |
