feat(ideavim): Use intellimacs as base for ideavim

This commit is contained in:
js0ny 2025-03-20 20:01:49 +00:00
parent c3fa0c4b5c
commit 2ae16a5cf8
3 changed files with 87 additions and 19 deletions

View file

@ -7,7 +7,16 @@
" Linking:
" ln -sf $DOTFILES/common/ideavimrc $XDG_CONFIG_HOME/ideavim/ideavimrc
""" Basic Configs """
source ~/.local/share/intellimacs/spacemacs.vim
source ~/.local/share/intellimacs/extra.vim
source ~/.local/share/intellimacs/major.vim
source ~/.local/share/intellimacs/hybrid.vim
source ~/.local/share/intellimacs/which-key.vim
" """ Basic Configs """
let mapleader = " " " set <leader> to <space>
""" Colemak """
@ -25,6 +34,13 @@ noremap K N
noremap j e
noremap J E
noremap H :bp<CR>
noremap I :bn<CR>
noremap N 5j
noremap E 5k
" Y to yank to end of line
noremap Y y$
@ -95,7 +111,7 @@ nnoremap gr :action ShowUsages<CR>
nnoremap gi :action GotoImplementation<CR>
nnoremap gpi :action QuickImplementations<CR>
nnoremap gs :action GotoSuperMethod<CR>
nnoremap ga :action
nnoremap ga :action ShowIntentionActions<CR>
nnoremap gq :action ShowIntentionActions<CR>
nnoremap ge :action GotoNextError<CR>