Download:
child 249:ba383577c9db
parent 247:2224cc881f54
248:feaf2a7bd655
Anton Shestakov <av6@dwimlabs.net>, Sat, 26 Nov 2022 02:41:55 +0400
.vimrc: one day vimscript will let us have spaces around operators everywhere Today we prepare for that day, for it will come. I might've looked at https://favadi.com/update-your-vimrc-to-vim9-script/

1 файлов изменено, 19 вставок(+), 19 удалений(-) [+]
.vimrc file | annotate | diff | comparison | revisions
--- a/.vimrc Sat Nov 26 02:31:47 2022 +0400
+++ b/.vimrc Sat Nov 26 02:41:55 2022 +0400
@@ -100,25 +100,25 @@
\ | endif
" airline
-let g:airline_symbols_ascii=1
-let g:airline_theme='powerlineish'
+let g:airline_symbols_ascii = 1
+let g:airline_theme = 'powerlineish'
" ctrlp
-let g:ctrlp_max_height=20
-let g:ctrlp_custom_ignore='\v[\/](venv|node_modules|\.(git|hg|svn))$'
+let g:ctrlp_max_height = 20
+let g:ctrlp_custom_ignore = '\v[\/](venv|node_modules|\.(git|hg|svn))$'
" syntastic
-let g:syntastic_check_on_open=1
-let g:syntastic_auto_loc_list=1
-let g:syntastic_enable_signs=1
-let g:syntastic_enable_highlighting=1
-let g:syntastic_html_checkers=["jshint"]
-let g:syntastic_html_jshint_exec="~/node_modules/jshint/bin/jshint"
-let g:syntastic_python_checkers=["pyflakes"]
-let g:syntastic_lua_checkers=["luac", "luacheck"]
-let g:syntastic_lua_luacheck_exec="~/.luarocks/bin/luacheck"
-let g:syntastic_javascript_checkers=["jshint"]
-let g:syntastic_javascript_jshint_exec="~/node_modules/jshint/bin/jshint"
+let g:syntastic_check_on_open = 1
+let g:syntastic_auto_loc_list = 1
+let g:syntastic_enable_signs = 1
+let g:syntastic_enable_highlighting = 1
+let g:syntastic_html_checkers = ["jshint"]
+let g:syntastic_html_jshint_exec = "~/node_modules/jshint/bin/jshint"
+let g:syntastic_python_checkers = ["pyflakes"]
+let g:syntastic_lua_checkers = ["luac", "luacheck"]
+let g:syntastic_lua_luacheck_exec = "~/.luarocks/bin/luacheck"
+let g:syntastic_javascript_checkers = ["jshint"]
+let g:syntastic_javascript_jshint_exec = "~/node_modules/jshint/bin/jshint"
au FileType python call s:check_if_python3()
@@ -132,8 +132,8 @@
let g:signify_skip = { 'vcs': { 'allow': ['git', 'hg'] } }
" vim-ansible
-let g:ansible_attribute_highlight="ab"
-let g:ansible_extra_keywords_highlight=1
+let g:ansible_attribute_highlight = "ab"
+let g:ansible_extra_keywords_highlight = 1
if $COLORTERM == 'truecolor'
" uses "cterm" attributes on vim, "gui" attributes on neovim
@@ -141,8 +141,8 @@
endif
" molokai color scheme
-let g:molokai_original=1
-let g:rehash256=0
+let g:molokai_original = 1
+let g:rehash256 = 0
colorscheme molokai
highlight MatchParen guifg=#FD971F guibg=bg gui=bold ctermfg=208 ctermbg=none cterm=bold
highlight Comment ctermfg=244