diff --git a/.config/nvim/lua/plugins/init.lua b/.config/nvim/lua/plugins/init.lua index ed1084e..99049dd 100644 --- a/.config/nvim/lua/plugins/init.lua +++ b/.config/nvim/lua/plugins/init.lua @@ -137,4 +137,9 @@ return { }, }, }, + { + "m4xshen/hardtime.nvim", + dependencies = { "MunifTanjim/nui.nvim", "nvim-lua/plenary.nvim" }, + opts = {} + }, } diff --git a/.gitignore b/.gitignore index 5e360fb..5e85d9f 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ .config/tmux/plugins +.idea diff --git a/.ideavimrc b/.ideavimrc index 3c0f69d..17777b7 100644 --- a/.ideavimrc +++ b/.ideavimrc @@ -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 :action NextTab noremap :action PreviousTab " Pane Navigation +sethandler a:vim +sethandler a:vim noremap h noremap l noremap k @@ -111,3 +112,6 @@ map mg (GoToMenu) map ms (ScopeViewPopupMenu) map mt (EditorTabPopupMenu) map mw (ToolWindowsGroup) + +" Unit Tests +map tr (RunClass) \ No newline at end of file diff --git a/.stow-local-ignore b/.stow-local-ignore index 70f5619..4b07796 100644 --- a/.stow-local-ignore +++ b/.stow-local-ignore @@ -5,4 +5,3 @@ ansible.cfg inventory .git .gitignore - diff --git a/.zshrc b/.zshrc index 1f5e508..502aa5f 100644 --- a/.zshrc +++ b/.zshrc @@ -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