fix: fixed conflicts + moving to yadm

This commit is contained in:
2026-02-20 17:21:21 +03:00
parent 03128d0bcf
commit b5f443916b
553 changed files with 704 additions and 256 deletions

49
.ideavimrc Normal file
View File

@@ -0,0 +1,49 @@
" Plugins
Plug 'preservim/nerdtree'
Plug 'tpope/vim-commentary'
Plug 'machakann/vim-highlightedyank'
" Global
set clipboard=unnamedplus
let mapleader=" "
set scrolloff=5
set incsearch
" Incode mappings
map <S-Space> <Action>(GotoNextError)
"" Commentary
nnoremap <S-\> :Commentary<CR>
xnoremap <S-\> :Commentary<CR>
" Navigation
"" editor navigation
nnoremap H gT
nnoremap H gt
"" code spaces navigation
nnoremap <C-H> <C-w>H
nnoremap <C-L> <C-w>L
nnoremap <C-k> <C-w>k
nnoremap <C-j> <C-w>j
"" tree-code navigation
""" set "FocusEditor" to <C-l> in Android Studio settings
nnoremap <C-h> :action ActivateProjectToolWindow<CR>
nnoremap <C-t> :action ActivateTerminalToolWindow<CR>
" tree
let g:NERDTreeMapCloseDir = 'h'
let g:NERDTreeMapActivateNode = 'l'
let g:NERDTreeMapToggleHidden = 'H'
let g:NERDTreeMapDelete = 'd'
let g:NERDTreeMapNewFile = 'a'
let g:NERDTreeMapNewDir = 'A'
let g:NERDTreeMapToggleZoom = 'n'
" Testing
"map Q gq