From ff83f328a546d1d9fdaa2d7056029dc5be32e3c0 Mon Sep 17 00:00:00 2001 From: liv Date: Sat, 13 Jul 2024 18:57:45 +0200 Subject: [PATCH] set up a basic tmux conf --- dot_config/fish/config.fish | 7 ++++++- dot_config/nvim/lua/config/lazy.lua | 1 + dot_config/tmux/tmux.conf | 14 ++++++++++++++ 3 files changed, 21 insertions(+), 1 deletion(-) create mode 100644 dot_config/tmux/tmux.conf diff --git a/dot_config/fish/config.fish b/dot_config/fish/config.fish index 2238f66..4f4f033 100644 --- a/dot_config/fish/config.fish +++ b/dot_config/fish/config.fish @@ -24,6 +24,7 @@ setpath ~/.rbenv/bin setpath ~/.pyenv/shims setpath ~/.cargo/bin setpath ~/.ghcup/bin +setpath ~/.cabal/bin setpath ~/.local/bin setpath ~/.local/bin/elixir-ls setpath ~/.rye/shims @@ -42,7 +43,7 @@ zoxide init fish | source source ~/.config/fish/private.fish # Environment variables -set -x EDITOR "vim" +set -x EDITOR "nvim" set -x USER "lu" set -x SHELL (which fish) set -x TERM xterm-256color @@ -81,6 +82,10 @@ alias rp "rustup" alias be "bundle exec" # cd into a temp directory, very useful! alias mkt "cd (mktemp -d)" +# tmux aliases +alias tx "tmux" +alias txls "tmux list-sessions" +alias txa "tmux attach" # Git Aliases alias lg "lazygit" alias g "git" diff --git a/dot_config/nvim/lua/config/lazy.lua b/dot_config/nvim/lua/config/lazy.lua index c0b8ee7..058fc6a 100644 --- a/dot_config/nvim/lua/config/lazy.lua +++ b/dot_config/nvim/lua/config/lazy.lua @@ -14,6 +14,7 @@ require("lazy").setup({ { import = "lazyvim.plugins.extras.editor.aerial" }, { import = "lazyvim.plugins.extras.editor.leap" }, { import = "lazyvim.plugins.extras.lang.rust" }, + { import = "lazyvim.plugins.extras.lang.haskell" }, { import = "lazyvim.plugins.extras.formatting.prettier" }, -- import/override with your plugins { import = "plugins" }, diff --git a/dot_config/tmux/tmux.conf b/dot_config/tmux/tmux.conf new file mode 100644 index 0000000..f7aa42e --- /dev/null +++ b/dot_config/tmux/tmux.conf @@ -0,0 +1,14 @@ +# mouse mode +set -g mouse on + +# easy reloads +bind r source-file ~/.config/tmux/tmux.conf + +# fix escape-time to prevent weird behaviour in vim +set -s escape-time 0 + +# use C-b s/h for splitting +unbind s +unbind h +bind s split-window -v +bind h split-window -h