Added the Plug setup step to the setup script + instructions

This commit is contained in:
Vlad R
2024-08-28 12:14:02 +00:00
parent 29a1c649a1
commit 1003e7d2d9
2 changed files with 7 additions and 2 deletions
+3 -2
View File
@@ -32,7 +32,7 @@ set guifont=hack_nerd_font:h11
" set cc=100 " Enable visual limit at 100 chars for good code formatting practice
set bg=dark
let g:kite_supported_languages = ['python', 'javascript']
let g:kite_supported_languages = ['python', 'javascript', 'go']
" There are certain files that we would never want to edit with Vim.
@@ -83,7 +83,8 @@ let g:ale_linters = {
\ 'go': ['vet', 'errcheck'],
\}
let g:ale_python_flake8_options = '--ignore=E501'
let g:ale_echo_msg_format='[%linter%] [%severity%] %code% %s'
let g:ale_echo_msg_format = '[%linter%] [%severity%] %code% %s'
let g:gruvbox_contrast_dark = 'soft'
colorscheme gruvbox
" " }}}