Compare commits

...

4 Commits

3 changed files with 12 additions and 1 deletions

View File

@@ -26,6 +26,10 @@ unbind %
bind -n S-down new-window
bind -n S-left prev
bind -n S-right next
# and for split-keyboard
bind -n C-down new-window
bind -n C-left prev
bind -n C-right next
# resizing panes using Ctrl-Alt-arrows without prefix
bind -n C-M-Up resize-pane -U 2

View File

@@ -1,3 +1,5 @@
{
"pyright.inlayHints.enable": false
"inlayHints.enable": false,
"pyright.inlayHints.functionReturnTypes": false,
"pyright.inlayHints.variableTypes": false
}

View File

@@ -57,6 +57,7 @@ call plug#begin('~/.vim/bundle') "Начать искать плагины в э
Plug 'preservim/nerdtree'
Plug 'junegunn/fzf', { 'do': { -> fzf#install() } }
Plug 'junegunn/fzf.vim'
Plug 'justinmk/vim-sneak'
Plug 'towolf/vim-helm'
Plug 'pearofducks/ansible-vim'
@@ -185,6 +186,10 @@ endfunction
autocmd BufRead,BufNewFile * call s:enable_coc_for_type()
source ~/.vim/coc.vim
"
" vim-sneak plugin settings
"
let g:sneak#label = 1
" YAML files config
autocmd FileType yaml,yml setlocal ts=2 sts=2 sw=2 expandtab