mirror of
https://git.sr.ht/~rouven/nixos-config
synced 2025-04-25 16:08:30 +02:00
made tmux config global
This commit is contained in:
parent
06eff6014c
commit
f90ba1151a
7 changed files with 9 additions and 12 deletions
|
@ -11,7 +11,6 @@
|
|||
./sops
|
||||
./spotify
|
||||
./ssh
|
||||
./tmux
|
||||
./vifm
|
||||
./theme
|
||||
./packages.nix
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
programs.gh = {
|
||||
enable = true;
|
||||
settings = {
|
||||
editor = "nvim";
|
||||
editor = "hx";
|
||||
git_protocol = "ssh";
|
||||
};
|
||||
};
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
# better desktop application name. "wpa_gui" kinda sucks
|
||||
postInstall = prev.postInstall + ''
|
||||
|
||||
substituteInPlace $out/share/applications/wpa_gui.desktop --replace "Name=wpa_gui" "Name=WPA Supplicant"
|
||||
substituteInPlace $out/share/applications/wpa_gui.desktop --replace "Name=wpa_gui" "Name=Manage Wifi"
|
||||
'';
|
||||
})) # manage wifi
|
||||
cinnamon.nemo
|
||||
|
|
|
@ -1,27 +0,0 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
programs.tmux = {
|
||||
enable = true;
|
||||
keyMode = "vi";
|
||||
terminal = "tmux-256color";
|
||||
clock24 = true;
|
||||
extraConfig =
|
||||
''
|
||||
set -g default-shell ${pkgs.zsh}/bin/zsh
|
||||
bind P display-popup
|
||||
set -sg escape-time 10
|
||||
'';
|
||||
plugins = with pkgs.tmuxPlugins; [
|
||||
{
|
||||
plugin = dracula;
|
||||
extraConfig = ''
|
||||
set -g @dracula-plugins "git time"
|
||||
set -g @dracula-show-left-icon session
|
||||
set -g @dracula-show-powerline true
|
||||
'';
|
||||
}
|
||||
tmux-fzf
|
||||
];
|
||||
};
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue