Compare commits

...

2 Commits

Author SHA1 Message Date
2ce3d322ca Add coc-powershell on Windows only 2022-06-15 22:15:23 +01:00
27c42a6a92 Don't use GUI tabs in neovim-qt 2022-06-15 22:15:23 +01:00
2 changed files with 10 additions and 0 deletions

View File

@@ -5,3 +5,8 @@ if exists(':GuiFont')
GuiFont Source\ Code\ Pro:h9 GuiFont Source\ Code\ Pro:h9
endif endif
endif endif
if exists(':GuiTabline')
" Don't use GUI tabline, matches terminal tabline.
GuiTabline 0
endif

5
vimrc
View File

@@ -42,6 +42,11 @@ let g:coc_global_extensions = [
\ 'coc-vimlsp', \ 'coc-vimlsp',
\ 'coc-yaml', \ 'coc-yaml',
\] \]
if has("win32")
let g:coc_global_extensions += [
\ 'coc-powershell'
\]
endif
let g:coc_default_semantic_highlight_groups = 0 let g:coc_default_semantic_highlight_groups = 0
" ultisnips - snippet engine " ultisnips - snippet engine