Browse Source

fix ALE/OmniSharp quickfix list conflict

Daniel Sheffield 1 week ago
parent
commit
ac71d4b7f5
1 changed files with 11 additions and 0 deletions
  1. 11 0
      vim/vimfiles/vimrc

+ 11 - 0
vim/vimfiles/vimrc

@@ -19,6 +19,13 @@ Plug 'dense-analysis/ale'
 call plug#end()
 " }}}
 
+" let g:ale_enabled = 0
+
+" Copilot suggestion for ALE/OmniSharp quick list co-existence {{{
+let g:ale_set_quickfix = 0
+let g:ale_set_loclist = 1
+" }}}
+
 " Personal {{{
 
 " Looks {{{
@@ -33,6 +40,7 @@ set textwidth=80
 set hlsearch incsearch
 set number relativenumber
 set ruler
+set showcmd
 " }}}
 
 " Spaces instead of TABs :( {{{
@@ -317,6 +325,9 @@ let g:OmniSharp_highlight_groups = {
 " Restore some things Max Cantor changed
 unlet g:netrw_banner
 
+" Restore some other defaults that got disabled
+set showcmd
+
 " Clear search highlight after sourcing
 silent! call feedkeys(":nohlsearch\<CR>")