mirror of
https://github.com/softinio/nix-config.git
synced 2025-09-03 16:16:42 -07:00
remove wezterm,tmux,ghostty and add kitty back
This commit is contained in:
parent
03cfe695a0
commit
c081796699
8 changed files with 26 additions and 314 deletions
|
@ -1,30 +0,0 @@
|
|||
{ pkgs, ... }:
|
||||
|
||||
let
|
||||
tmuxConfig = builtins.readFile ./tmux.conf;
|
||||
in
|
||||
{
|
||||
programs.tmux = {
|
||||
enable = true;
|
||||
baseIndex = 1;
|
||||
escapeTime = 10;
|
||||
historyLimit = 10000;
|
||||
keyMode = "vi";
|
||||
prefix = "C-a";
|
||||
terminal = "xterm-256color";
|
||||
extraConfig = tmuxConfig;
|
||||
plugins = with pkgs; [
|
||||
{
|
||||
plugin = tmuxPlugins.resurrect;
|
||||
extraConfig = "set -g @resurrect-strategy-nvim 'session'";
|
||||
}
|
||||
{
|
||||
plugin = tmuxPlugins.continuum;
|
||||
extraConfig = "set -g @continuum-restore 'on'";
|
||||
}
|
||||
{ plugin = tmuxPlugins.sensible; }
|
||||
{ plugin = tmuxPlugins.vim-tmux-navigator; }
|
||||
{ plugin = tmuxPlugins.onedark-theme; }
|
||||
];
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue