From b4863699ebbd4d3b830388af61a2918dbb3e50dd Mon Sep 17 00:00:00 2001 From: "flyingscorpio@arch-desktop" Date: Fri, 15 Jan 2021 19:12:06 +0100 Subject: [PATCH] Add Powershell syntax highlighting and coc plugin --- dotfiles/vim/vimrc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/dotfiles/vim/vimrc b/dotfiles/vim/vimrc index 29514c8..5280f73 100644 --- a/dotfiles/vim/vimrc +++ b/dotfiles/vim/vimrc @@ -67,6 +67,8 @@ Plug 'rust-lang/rust.vim' Plug 'godlygeek/tabular' | Plug 'plasticboy/vim-markdown' " Ansible syntax highlighting Plug 'pearofducks/ansible-vim', { 'do': './UltiSnips/generate.sh' } +" PowerShell syntax hightlighting +Plug 'PProvost/vim-ps1' " STATUSLINE Plug 'vim-airline/vim-airline' @@ -103,7 +105,7 @@ let g:pymode_options_max_line_length = 90 let g:pymode_options_colorcolumn = 0 let g:pymode_lint_ignore = ["E203"] -let g:coc_global_extensions = [ 'coc-python', 'coc-json', 'coc-html', 'coc-css', 'coc-vimtex' ] +let g:coc_global_extensions = [ 'coc-powershell', 'coc-python', 'coc-json', 'coc-html', 'coc-css', 'coc-vimtex' ] "let g:ycm_extra_conf_globlist = ['!~/*'] " is overwritten in autogroups for c "let g:ycm_autoclose_preview_window_after_insertion = 1