diff --git a/docs/setup/setup.tmux.md b/docs/setup/setup.tmux.md deleted file mode 100644 index a25c0f5..0000000 --- a/docs/setup/setup.tmux.md +++ /dev/null @@ -1,37 +0,0 @@ -# tmux - -## create new tmux session -```shell -tuxifier new-session default -``` - -## add following script -```shell -if initialize_session "default"; then - - # open dotfiles - new_window "dotfiles" - run_cmd "cd ~/.dotfiles" - run_cmd "nvim" - - # open siempie - new_window "siempie" - run_cmd "cd ~/Documents/git/siempie" - run_cmd "nvim" - - # open itcreation - new_window "itcreation" - run_cmd "cd ~/Documents/git/itcreation" - run_cmd "nvim" - - # open empty shell - new_window "simon" - - # go by default to the open shell - select_window 4 - -fi - -# finalize session creation and switch/attach to it. -finalize_and_go_to_session -``` diff --git a/nix/home/tmux/tmux.nix b/nix/home/tmux/tmux.nix index da7d5df..3b63d09 100644 --- a/nix/home/tmux/tmux.nix +++ b/nix/home/tmux/tmux.nix @@ -1,11 +1,6 @@ { config, pkgs, ... }: { - # tmuxifier - home.packages = with pkgs; [ - tmuxifier - ]; - # tmux programs.tmux = { enable = true; diff --git a/nix/home/zsh/zsh.nix b/nix/home/zsh/zsh.nix index a0a83e3..68a737b 100644 --- a/nix/home/zsh/zsh.nix +++ b/nix/home/zsh/zsh.nix @@ -58,9 +58,6 @@ # teleport titc = "tsh login --proxy=teleport.itcreation.nl --user=admscornet"; - - # tmux - td = "tmuxifier load-session default"; }; }; }