Skip to content

Commit

Permalink
Change color to onedark
Browse files Browse the repository at this point in the history
  • Loading branch information
LuQifeng committed Nov 29, 2017
1 parent e2818c0 commit 704fa56
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions init.vim
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ Plug 'ddcien/ici.vim'
" Browsing {{{
Plug 'kshenoy/vim-signature'
Plug 'mhinz/vim-startify'
let g:startify_change_to_dir = 0
let g:startify_change_to_vcs_root = 1
Plug 'junegunn/rainbow_parentheses.vim'
let g:rainbow#pairs = [['(', ')'], ['[', ']'], ['{', '}']]

Expand Down Expand Up @@ -144,8 +146,8 @@ let g:ale_fix_on_save = 0
let g:ale_completion_enabled = 0
let g:ale_linters = {}
let g:ale_linters['vim'] = ['vint']
let g:ale_linters['c'] = ['cppcheck', 'clangtidy']
let g:ale_linters['cpp'] = ['cppcheck', 'clangtidy']
let g:ale_linters['c'] = ['clangtidy']
let g:ale_linters['cpp'] = ['clangtidy']
let g:ale_linters['cmake'] = ['cmakelint']
let g:ale_linters['python'] = ['flake8']
let g:ale_linters['markdown'] = ['proselint', 'remark-lint', 'vale']
Expand Down Expand Up @@ -201,7 +203,7 @@ let g:cpp_class_decl_highlight = 1
let g:cpp_experimental_template_highlight = 1
let g:cpp_concepts_highlight = 1
let g:cpp_no_function_highlight = 1
Plug 'ddcien/vim-gtags', {'for': ['c', 'cpp']}
Plug 'ddcien/vim-gtags'
let g:Gtags_Auto_Update = 1
let g:Gtags_Close_When_Single = 1
nmap <C-]> :Gtags<CR><CR>
Expand Down Expand Up @@ -320,8 +322,6 @@ endif
" }}}

" Color setting {{{
set background=dark
let g:neosolarized_italic = 1
colorschem NeoSolarized
colorscheme onedark
" }}}

0 comments on commit 704fa56

Please sign in to comment.