Updating tmuxinator configs
This commit is contained in:
@@ -1,12 +1,12 @@
|
||||
# /home/th3r00t/.config/tmuxinator/Dotfiles.yml
|
||||
# /home/th3r00t/.config/tmuxinator/Dashboard.yml
|
||||
|
||||
name: Nixos
|
||||
root: /etc/nixos/
|
||||
name: Dashboard
|
||||
root: ~/
|
||||
|
||||
# Optional tmux socket
|
||||
# socket_name: foo
|
||||
# Runs on project start, always
|
||||
on_project_start: export BROWSER=w3m
|
||||
# on_project_start: export BROWSER=qutebrowser
|
||||
|
||||
# Run on project start, the first time
|
||||
# on_project_first_start: command
|
||||
@@ -21,7 +21,7 @@ on_project_start: export BROWSER=w3m
|
||||
# on_project_stop: command
|
||||
|
||||
# Specifies (by name or index) which window will be selected on project startup. If not set, the first window is used.
|
||||
startup_window: Editor
|
||||
startup_window: Dash
|
||||
|
||||
# Specifies (by index) which pane of the specified window will be selected on project startup. If not set, the first pane is used.
|
||||
# startup_pane: 1
|
||||
@@ -30,7 +30,13 @@ startup_window: Editor
|
||||
# attach: false
|
||||
enable_pane_titles: true
|
||||
windows:
|
||||
- Git:
|
||||
- lazygit
|
||||
- Editor:
|
||||
- nvim
|
||||
- Dash:
|
||||
- clear;fastfetch;fortune|cowsay|lolcat
|
||||
- IRC:
|
||||
- irssi
|
||||
- Email:
|
||||
- mbsync -a;neomutt
|
||||
- Music:
|
||||
- musikcube
|
||||
- Podcasts:
|
||||
- castero
|
||||
@@ -46,8 +46,10 @@ startup_window: Editor
|
||||
enable_pane_titles: true
|
||||
windows:
|
||||
- Editor:
|
||||
layout: fce1,255x68,0,0[255x45,0,0,24,255x22,0,46,27]
|
||||
panes:
|
||||
- nvim
|
||||
- ranger .
|
||||
- Debugger:
|
||||
panes:
|
||||
- clear;fastfetch;misfortune|cowsay|lolcat
|
||||
|
||||
22
home/.config/tmuxinator/NVIMConfig.yml
Normal file
22
home/.config/tmuxinator/NVIMConfig.yml
Normal file
@@ -0,0 +1,22 @@
|
||||
# /home/th3r00t/.config/tmuxinator/tmuxConfig.yml
|
||||
|
||||
name: NVIMConfig
|
||||
root: ~/Projects/nvim-config
|
||||
|
||||
# Optional tmux socket
|
||||
# socket_name: foo
|
||||
|
||||
# Specifies (by name or index) which window will be selected on project startup. If not set, the first window is used.
|
||||
startup_window: Git
|
||||
|
||||
# Specifies (by index) which pane of the specified window will be selected on project startup. If not set, the first pane is used.
|
||||
# startup_pane: 1
|
||||
|
||||
# Controls whether the tmux session should be attached to automatically. Defaults to true.
|
||||
# attach: false
|
||||
enable_pane_titles: true
|
||||
windows:
|
||||
- Git:
|
||||
- lazygit
|
||||
- nvim:
|
||||
- nvim
|
||||
@@ -1,12 +1,12 @@
|
||||
# /home/th3r00t/.config/tmuxinator/Dashboard.yml
|
||||
# /home/th3r00t/.config/tmuxinator/Dotfiles.yml
|
||||
|
||||
name: Dashboard
|
||||
root: ~/
|
||||
name: Nixos
|
||||
root: /etc/nixos/
|
||||
|
||||
# Optional tmux socket
|
||||
# socket_name: foo
|
||||
# Runs on project start, always
|
||||
# on_project_start: export BROWSER=qutebrowser
|
||||
on_project_start: export BROWSER=w3m
|
||||
|
||||
# Run on project start, the first time
|
||||
# on_project_first_start: command
|
||||
@@ -21,7 +21,7 @@ root: ~/
|
||||
# on_project_stop: command
|
||||
|
||||
# Specifies (by name or index) which window will be selected on project startup. If not set, the first window is used.
|
||||
startup_window: Dash
|
||||
startup_window: Git
|
||||
|
||||
# Specifies (by index) which pane of the specified window will be selected on project startup. If not set, the first pane is used.
|
||||
# startup_pane: 1
|
||||
@@ -30,13 +30,7 @@ startup_window: Dash
|
||||
# attach: false
|
||||
enable_pane_titles: true
|
||||
windows:
|
||||
- Dash:
|
||||
- clear;fastfetch;misfortune|cowsay|lolcat
|
||||
- IRC:
|
||||
- irssi
|
||||
- Email:
|
||||
- mbsync -a;neomutt
|
||||
- Music:
|
||||
- musikcube
|
||||
- Podcasts:
|
||||
- castero
|
||||
- Git:
|
||||
- lazygit
|
||||
- Editor:
|
||||
- nvim
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
#!/usr/bin/bash
|
||||
#!/usr/bin/env bash
|
||||
layout=$( tmux display-message -p "#{window_layout}" )
|
||||
echo $layout
|
||||
|
||||
@@ -3,7 +3,8 @@
|
||||
# Description: A script to list and start tmuxinator projects using fzf.
|
||||
|
||||
# Set the directory where your tmuxinator configuration files are located
|
||||
TMUXINATOR_CONFIG_DIR="${HOME}/.config/tmuxinator/"
|
||||
# TMUXINATOR_CONFIG_DIR="${HOME}/.config/tmuxinator/"
|
||||
TMUXINATOR_CONFIG_DIR="/etc/nixos/home/.config/tmuxinator/"
|
||||
|
||||
# Find all tmuxinator `.yml` files in the specified directory, remove path and extensions
|
||||
# project=$(find "$TMUXINATOR_CONFIG_DIR" -type f -name "*.yml" | sed 's|.*/||;s|\.yml$||' | \
|
||||
|
||||
@@ -59,6 +59,7 @@
|
||||
luarocks
|
||||
lua5_1
|
||||
lua-language-server
|
||||
basedpyright
|
||||
go
|
||||
nodejs
|
||||
uv
|
||||
@@ -78,7 +79,6 @@
|
||||
python-pkgs.ptpython
|
||||
python-pkgs.ipython
|
||||
python-pkgs.pillow
|
||||
python-pkgs.basedpyright
|
||||
]
|
||||
)
|
||||
)
|
||||
@@ -98,7 +98,7 @@
|
||||
claude-code
|
||||
marksman
|
||||
unrar
|
||||
helix
|
||||
httpie
|
||||
];
|
||||
|
||||
programs.neovim.plugins = [
|
||||
|
||||
@@ -80,7 +80,7 @@
|
||||
$notes = kitty -T capture -e pytui -n
|
||||
$manpages = kitty -T capture -e pytui -m
|
||||
$sysmon = kitty -T system-monitor -e glances
|
||||
$editor = neovide
|
||||
$editor = kitty -T Editor -e tmuxinator start Development
|
||||
$screenshot = hyprshot -f ~/Pictures/Screenshots/%Y-%m-%d-%H%M%S.png
|
||||
|
||||
bind = $mainMod SHIFT, M, exec, hyprvirtmon.py
|
||||
|
||||
@@ -54,16 +54,16 @@
|
||||
set -g @pass-copy-to-clipboard on
|
||||
'';
|
||||
}
|
||||
{
|
||||
plugin = tmuxPlugins.tilish;
|
||||
extraConfig = ''
|
||||
set -g @tilish-navigator 'on'
|
||||
set -g @tilish-default 'main-vertical'
|
||||
set -g @tilish-enforce 'none'
|
||||
set -g escape-time 0
|
||||
set -g @tilish-dmenu 'on'
|
||||
'';
|
||||
}
|
||||
# {
|
||||
# plugin = tmuxPlugins.tilish;
|
||||
# extraConfig = ''
|
||||
# set -g @tilish-navigator 'on'
|
||||
# set -g @tilish-default 'main-vertical'
|
||||
# set -g @tilish-enforce 'none'
|
||||
# set -g escape-time 0
|
||||
# set -g @tilish-dmenu 'on'
|
||||
# '';
|
||||
# }
|
||||
|
||||
];
|
||||
prefix = "C-a";
|
||||
|
||||
Reference in New Issue
Block a user