fix(tmux): correct colors and enable vi mode
This commit is contained in:
parent
607d811587
commit
94433d4225
|
@ -4,10 +4,19 @@
|
||||||
programs.tmux = {
|
programs.tmux = {
|
||||||
enable = true;
|
enable = true;
|
||||||
clock24 = true;
|
clock24 = true;
|
||||||
|
keyMode = "vi";
|
||||||
|
terminal = "screen-256color";
|
||||||
|
|
||||||
|
extraConfig = ''
|
||||||
|
# Fix colors
|
||||||
|
set -sg terminal-overrides ",*:RGB"
|
||||||
|
'';
|
||||||
|
|
||||||
plugins = with pkgs.tmuxPlugins; [
|
plugins = with pkgs.tmuxPlugins; [
|
||||||
{
|
{
|
||||||
plugin = catppuccin;
|
plugin = catppuccin;
|
||||||
extraConfig = ''
|
extraConfig = ''
|
||||||
|
# Set theme
|
||||||
set -g @catppuccin_flavour 'frappe'
|
set -g @catppuccin_flavour 'frappe'
|
||||||
'';
|
'';
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue