vim and zsh improvements

This commit is contained in:
Petr Nyc
2025-02-12 13:58:12 +01:00
parent f13f3c71c7
commit 856bcc9ee9
3 changed files with 35 additions and 8 deletions

11
.vimrc
View File

@@ -79,10 +79,10 @@ let g:syntastic_yaml_checkers = ['yamllint']
" " https://vi.stackexchange.com/questions/10007/how-to-make-syntastic-include-sourced-files-for-bash-syntax-as-shellcheck-x
" let g:syntastic_sh_shellcheck_args = "-x"
" let g:syntastic_mode_map = {
" \ "mode": "active",
" \ "active_filetypes": [],
" \ "passive_filetypes": ["sh, yaml"] }
let g:syntastic_mode_map = {
\ "mode": "passive",
\ "active_filetypes": [ "bash" ],
\ "passive_filetypes": ["sh, yaml"] }
set modeline
set modelines=5
@@ -112,6 +112,9 @@ colorscheme solarized
" colorscheme darcula
hi Visual term=reverse cterm=reverse guibg=Grey
" open unfolded
set foldlevel=99
" copilot config
imap <silent> <C-j> <Plug>(copilot-next)