mirror of
https://github.com/kogakure/dotfiles.git
synced 2026-02-03 20:25:30 +00:00
feat(nix): migrate tmux and tpm plugins to Nix
This commit is contained in:
@@ -31,6 +31,7 @@ in
|
||||
./sesh
|
||||
./skhd
|
||||
./starship
|
||||
./tmux
|
||||
./wezterm
|
||||
./wget
|
||||
./yabai
|
||||
|
||||
@@ -5,16 +5,30 @@ session_path = "~/Code/GitHub/websites/stefanimhoff-de"
|
||||
script_path = "~/.config/sesh/scripts/node_dev"
|
||||
|
||||
[[session]]
|
||||
name = "Dotfiles"
|
||||
name = "⭐ Dotfiles"
|
||||
path = "~/.dotfiles"
|
||||
startup_command = "nvim"
|
||||
|
||||
[[session]]
|
||||
name = "Downloads 📥"
|
||||
name = "📥 Downloads"
|
||||
path = "~/Downloads"
|
||||
startup_command = "ll"
|
||||
startup_command = "la"
|
||||
|
||||
[[session]]
|
||||
name = "tmux config 🔧"
|
||||
path = "~/.dotfiles/tmux"
|
||||
startup_command = "nvim tmux.conf"
|
||||
name = "👨💻 stefanimhoff-de"
|
||||
path = "~/Code/GitHub/websites/stefanimhoff-de/"
|
||||
|
||||
[[session]]
|
||||
name = "🥷 kogakure-de"
|
||||
path = "~/Code/GitHub/websites/kogakure-de/"
|
||||
|
||||
[[session]]
|
||||
name = "📦 Crate 🌳"
|
||||
path = "~/Code/XING/crate.git/"
|
||||
|
||||
[[session]]
|
||||
name = "📦 Crate"
|
||||
path = "~/Code/XING/crate/"
|
||||
|
||||
[[session]]
|
||||
name = "🍺 Brewery"
|
||||
path = "~/Code/XING/brewery/"
|
||||
|
||||
82
nix/home/tmux/default.nix
Normal file
82
nix/home/tmux/default.nix
Normal file
@@ -0,0 +1,82 @@
|
||||
{ pkgs, ... }:
|
||||
|
||||
let
|
||||
# TODO: Wait for plugin in https://github.com/NixOS/nixpkgs/blob/maser/pkgs/misc/tmux-plugins/default.nix or add it with a PR
|
||||
tmux-nerd-font-window-name = pkgs.tmuxPlugins.mkTmuxPlugin {
|
||||
pluginName = "tmux-nerd-font-window-name";
|
||||
version = "v2.1.1";
|
||||
src = pkgs.fetchFromGitHub {
|
||||
owner = "joshmedeski";
|
||||
repo = "tmux-nerd-font-window-name";
|
||||
rev = "57961cb0a99b76f20e02639d398c973d81971d05";
|
||||
sha256 = "8P4jFEkcJn/JbdRAC5PCrLAGTJwFxCknllOjkD+PK9w=";
|
||||
};
|
||||
# INFO: Needed rename, because nix uses underscores
|
||||
postInstall = ''
|
||||
mv $target/tmux-nerd-font-window-name.tmux $target/tmux_nerd_font_window_name.tmux
|
||||
'';
|
||||
};
|
||||
in
|
||||
{
|
||||
home.file = {
|
||||
".config/tmux/tmux-nerd-font-window-name.yml" = {
|
||||
source = ./tmux-nerd-font-window-name.yml;
|
||||
};
|
||||
".gitmux.conf" = { source = ./gitmux.conf; };
|
||||
};
|
||||
|
||||
programs.tmux = {
|
||||
enable = true;
|
||||
terminal = "xterm";
|
||||
baseIndex = 1;
|
||||
escapeTime = 0;
|
||||
historyLimit = 50000;
|
||||
keyMode = "vi";
|
||||
mouse = true;
|
||||
customPaneNavigationAndResize = true;
|
||||
sensibleOnTop = false;
|
||||
extraConfig = builtins.readFile ./tmux.conf;
|
||||
plugins = with pkgs.tmuxPlugins; [
|
||||
sensible
|
||||
battery
|
||||
copycat
|
||||
logging
|
||||
open
|
||||
pain-control
|
||||
sessionist
|
||||
urlview
|
||||
yank
|
||||
{
|
||||
plugin = resurrect;
|
||||
extraConfig = ''
|
||||
set -g @resurrect-capture-pane-contents 'on'
|
||||
set -g @resurrect-strategy-nvim 'session'
|
||||
'';
|
||||
}
|
||||
{
|
||||
plugin = continuum;
|
||||
extraConfig = ''
|
||||
set -g @continuum-restore 'on'
|
||||
set -g @continuum-save-interval '10' # Save every 10 minutes
|
||||
'';
|
||||
}
|
||||
{
|
||||
plugin = jump;
|
||||
extraConfig = "set -g @jump-key 's'";
|
||||
}
|
||||
better-mouse-mode
|
||||
vim-tmux-navigator
|
||||
{
|
||||
plugin = tmux-nerd-font-window-name;
|
||||
extraConfig = "set -g @tmux-nerd-font-window-name-show-name true";
|
||||
}
|
||||
];
|
||||
};
|
||||
|
||||
home.packages = with pkgs; [
|
||||
gitmux
|
||||
# Dependencies of joshmedeski/tmux-nerd-font-window-name
|
||||
yq-go
|
||||
nodePackages.bash-language-server
|
||||
];
|
||||
}
|
||||
28
nix/home/tmux/gitmux.conf
Normal file
28
nix/home/tmux/gitmux.conf
Normal file
@@ -0,0 +1,28 @@
|
||||
tmux:
|
||||
symbols:
|
||||
branch: ' '
|
||||
hashprefix: ': '
|
||||
ahead: ' '
|
||||
behind: ' '
|
||||
staged: ' '
|
||||
conflict: ' '
|
||||
untracked: ' '
|
||||
modified: ' '
|
||||
stashed: ' '
|
||||
clean: ' '
|
||||
styles:
|
||||
clear: '#[fg=default]'
|
||||
state: '#[fg=red,bold]'
|
||||
branch: '#[fg=white,bold]'
|
||||
remote: '#[fg=cyan]'
|
||||
staged: '#[fg=green,bold]'
|
||||
conflict: '#[fg=red,bold]'
|
||||
modified: '#[fg=red,bold]'
|
||||
untracked: '#[fg=magenta,bold]'
|
||||
stashed: '#[fg=cyan,bold]'
|
||||
clean: '#[fg=green,bold]'
|
||||
divergence: '#[fg=default]'
|
||||
layout: [branch, divergence, ' ', flags]
|
||||
options:
|
||||
branch_max_len: 0
|
||||
branch_trim: right
|
||||
15
nix/home/tmux/tmux-nerd-font-window-name.yml
Normal file
15
nix/home/tmux/tmux-nerd-font-window-name.yml
Normal file
@@ -0,0 +1,15 @@
|
||||
config:
|
||||
fallback-icon: "?"
|
||||
show-name: true
|
||||
|
||||
icons:
|
||||
bat: ""
|
||||
gh: ""
|
||||
nix-env: ""
|
||||
nix-shell: ""
|
||||
nix: ""
|
||||
ollama: ""
|
||||
pnpm: ""
|
||||
reattach-to-user-namespace: ""
|
||||
spf: ""
|
||||
sudo: "🔒"
|
||||
97
nix/home/tmux/tmux.conf
Normal file
97
nix/home/tmux/tmux.conf
Normal file
@@ -0,0 +1,97 @@
|
||||
# Terminal overrides
|
||||
set -as terminal-overrides ',*:Smulx=\E[4::%p1%dm' # undercurl support
|
||||
set -as terminal-overrides ',*:Setulc=\E[58::2::%p1%{65536}%/%d::%p1%{256}%/%{255}%&%d::%p1%{255}%&%d%;m' # underscore colours - needs tmux-3.0
|
||||
|
||||
# Window settings
|
||||
set -g automatic-rename on
|
||||
set -g renumber-windows on
|
||||
|
||||
# Clipboard settings
|
||||
set -g set-clipboard on
|
||||
|
||||
# Message display time
|
||||
set -g display-time 4000
|
||||
|
||||
# Focus events for Vim
|
||||
set -g focus-events on
|
||||
|
||||
# Status bar settings
|
||||
set -g status-position top
|
||||
set -g status-style 'bg=default,fg=white' # transparent status bar
|
||||
set -g status-interval 1
|
||||
|
||||
# Pane style
|
||||
set -g pane-border-style "fg=brightblack,bg=default"
|
||||
set -g pane-active-border-style "fg=white,bg=default"
|
||||
|
||||
# Bar Left
|
||||
set -g status-left-length 100
|
||||
set -ga status-left "#[fg=white,nobold]"
|
||||
set -g status-left "#[fg=#84AEF0,bg=default]#[fg=#000000,bg=#84AEF0,bold]#S#[fg=#84aef0,bg=default]#[fg=white,bg=default] #(gitmux -timeout 500ms -cfg $HOME/.gitmux.conf)#[fg=white] ❭ " # session name
|
||||
|
||||
# Bar Right
|
||||
set -g status-right-length 100
|
||||
set -g status-right "#{now_playing} "
|
||||
|
||||
# Window status format
|
||||
set -g window-status-current-format "#[fg=magenta,bg=default]#[fg=#000000,bold,bg=magenta]#I#[fg=magenta,bg=#303042] #[fg=white,bg=#303042]#W#{?window_zoomed_flag, ,}#[fg=#303042,bg=default]"
|
||||
set -g window-status-separator " "
|
||||
set -g window-status-format "#[fg=#000000,bg=default]#[fg=white,bg=#000000]#I#[fg=#000000,bg=#303042] #[fg=white,bg=#303042]#W#{?window_bell_flag,,}#[fg=#303042,bg=default]"
|
||||
|
||||
# Force a reload of the config file
|
||||
bind r source-file ~/.config/tmux/tmux.conf\; display "Reloaded!"
|
||||
|
||||
# Swap Window to Position 1
|
||||
bind-key T swap-window -t 1
|
||||
|
||||
# Return to last session
|
||||
bind R switch-client -l
|
||||
|
||||
# Remove Confirm Step When Killing a Window or Pane
|
||||
bind-key & kill-window
|
||||
bind-key x kill-pane
|
||||
|
||||
# Lazygit
|
||||
bind G new-window -c "#{pane_current_path}" -n " Git" lazygit
|
||||
|
||||
# Lazydocker
|
||||
bind D new-window -c "#{pane_current_path}" -n " " lazydocker
|
||||
|
||||
# LF Terminal File Manager
|
||||
bind O new-window -c "#{pane_current_path}" -n " " lf
|
||||
|
||||
# Yazi Terminal File Manager
|
||||
bind W new-window -c "#{pane_current_path}" -n " " yazi
|
||||
|
||||
# Tile all windows
|
||||
bind = select-layout tiled
|
||||
|
||||
# Cycle through panes
|
||||
bind ^B select-pane -t :.+
|
||||
|
||||
# Copy/Paste bindings
|
||||
unbind [
|
||||
bind Escape copy-mode
|
||||
|
||||
# Setup 'v' to begin selection as in Vim, 'y' or 'Enter' to yank
|
||||
bind-key -T copy-mode-vi v send-keys -X begin-selection
|
||||
bind-key -T copy-mode-vi Enter send-keys -X copy-selection
|
||||
|
||||
bind P run "tmux paste-buffer"
|
||||
|
||||
# Thumbs command
|
||||
set -g @thumbs-command 'echo -n {} | pbcopy'
|
||||
|
||||
# Sesh integration
|
||||
bind-key "T" run-shell "sesh connect \"$(
|
||||
sesh list | fzf-tmux -p 55%,60% \
|
||||
--no-sort --border-label ' sesh ' --prompt '⚡ ' \
|
||||
--header '^a all ⋅ ^t tmux ⋅ ^g configs ⋅ ^x zoxide ⋅ ^d tmux kill ⋅ ^f find' \
|
||||
--bind 'tab:down,btab:up' \
|
||||
--bind 'ctrl-a:change-prompt(⚡ )+reload(sesh list)' \
|
||||
--bind 'ctrl-t:change-prompt(🪟 )+reload(sesh list -t)' \
|
||||
--bind 'ctrl-g:change-prompt(⚙️ )+reload(sesh list -c)' \
|
||||
--bind 'ctrl-x:change-prompt(📁 )+reload(sesh list -z)' \
|
||||
--bind 'ctrl-f:change-prompt(🔎 )+reload(fd -H -d 2 -t d -E .Trash . ~)' \
|
||||
--bind 'ctrl-d:execute(tmux kill-session -t {})+change-prompt(⚡ )+reload(sesh list)'
|
||||
)\""
|
||||
Reference in New Issue
Block a user