diff options
author | Oxbian <got.dacs@slmail.me> | 2023-12-02 22:03:41 +0100 |
---|---|---|
committer | Oxbian <got.dacs@slmail.me> | 2023-12-02 22:03:41 +0100 |
commit | 6c5f19bf6524fc38c4288858f9f03c0fbc325556 (patch) | |
tree | ff16fe3d4429b0309756eab4f38e4908d04204c0 /vim/options.vim | |
parent | 900c5ae36832b3426596b59cb89b6e5c1f87e38b (diff) | |
download | vimrc-6c5f19bf6524fc38c4288858f9f03c0fbc325556.tar.gz vimrc-6c5f19bf6524fc38c4288858f9f03c0fbc325556.zip |
ADD: CoC Lsp, and update README
Diffstat (limited to 'vim/options.vim')
-rw-r--r-- | vim/options.vim | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/vim/options.vim b/vim/options.vim index 7ffd2a9..650df04 100644 --- a/vim/options.vim +++ b/vim/options.vim @@ -6,8 +6,9 @@ set hlsearch " Highlight all match search pattern " Graphics options syntax on " Show syntax color +set termguicolors set background=dark " Set vim style as dark -colorscheme onedark " Set colorscheme as onedark +colorscheme zenwritten " Set colorscheme as onedark set number " Show line number set relativenumber " Show relative line number set cursorline " Select the current line @@ -44,6 +45,7 @@ set updatetime=500 " Delay before vim write swap file, lower better for gitgutte " Autocomplete set completeopt=menu,menuone,popup,noselect,noinsert " Show a pop up for command completion set wildmenu " Turn on wildmenu +filetype plugin on " Avoid garbled characters in Chinese language windows OS let $LANG='en' " Setting lang as en |