This commit is contained in:
DeveloperDurp 2024-07-17 05:06:35 -05:00
parent 941e3031d7
commit 3f062ff27c
5 changed files with 12 additions and 3 deletions

View file

@ -137,4 +137,9 @@ return {
},
},
},
{
"m4xshen/hardtime.nvim",
dependencies = { "MunifTanjim/nui.nvim", "nvim-lua/plenary.nvim" },
opts = {}
},
}

1
.gitignore vendored
View file

@ -1 +1,2 @@
.config/tmux/plugins
.idea

View file

@ -10,7 +10,6 @@ set visualbell
set ignorecase
set smartcase
set notimeout
set clipboard+=unnamed
" 3rd party
set which-key
@ -44,6 +43,8 @@ noremap <Tab> :action NextTab<CR>
noremap <S-Tab> :action PreviousTab<CR>
" Pane Navigation
sethandler <c-j> a:vim
sethandler <c-k> a:vim
noremap <C-h> <C-w>h
noremap <C-l> <C-w>l
noremap <C-k> <C-w>k
@ -111,3 +112,6 @@ map <leader>mg <action>(GoToMenu)
map <leader>ms <action>(ScopeViewPopupMenu)
map <leader>mt <action>(EditorTabPopupMenu)
map <leader>mw <action>(ToolWindowsGroup)
" Unit Tests
map <leader>tr <action>(RunClass)

View file

@ -5,4 +5,3 @@ ansible.cfg
inventory
.git
.gitignore

2
.zshrc
View file

@ -36,7 +36,7 @@ eval "$(oh-my-posh init zsh --config ~/.config/ohmyposh/config.toml)"
if command -v tmux &> /dev/null && [[ "$TERMINAL_EMULATOR" == "JetBrains-JediTerm" ]] && [[ ! "$TERM" =~ tmux ]] && [ -z "$TMUX" ]; then
cwd=$(pwd)
session_name="goland-$(basename "$cwd" | tr -d '.')"
session_name="$JetBrainsEditor-$(basename "$cwd" | tr -d '.')"
if tmux has-session -t $session_name; then
tmux attach -t $session_name