Skip to content

Commit

Permalink
Allow for a local vim settings override
Browse files Browse the repository at this point in the history
Specific use-case here: Windows Terminal doesn't yet appear to support
querying the background color with ANSI control codes, so vim can't
auto-detect whether the background is light or dark and defaults to
light mode.

microsoft/terminal#3718
  • Loading branch information
dhwthompson committed Aug 1, 2023
1 parent 19f1fd4 commit 8ac87c9
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions vim/vimrc
Original file line number Diff line number Diff line change
Expand Up @@ -85,3 +85,7 @@ autocmd Syntax * syn match ExtraWhitespace /\s\+$/ containedin=ALL
set colorcolumn=+1

let g:go_auto_type_info = 1

if filereadable($HOME . "/.vimrc-local")
source $HOME/.vimrc-local
endif

0 comments on commit 8ac87c9

Please sign in to comment.