Mercurial > dotfiles
diff dot_config/nvim/init.vim @ 282:6279917e1aaa
Switch to vim-one colorscheme
author | zegervdv <zegervdv@me.com> |
---|---|
date | Sun, 30 Aug 2020 09:49:33 +0200 |
parents | dfd62b5a9962 |
children | 3c5523f18d0a |
line wrap: on
line diff
--- a/dot_config/nvim/init.vim Tue Aug 25 09:48:17 2020 +0200 +++ b/dot_config/nvim/init.vim Sun Aug 30 09:49:33 2020 +0200 @@ -115,7 +115,9 @@ Plug 'neovim/nvim-lsp' Plug 'nvim-lua/completion-nvim' Plug 'nvim-lua/diagnostic-nvim' - Plug 'nvim-treesitter/nvim-treesitter' + " Plug 'nvim-treesitter/nvim-treesitter' + Plug '~/Projects/nvim-treesitter' + Plug 'nvim-treesitter/playground' Plug 'steelsojka/completion-buffers' endif @@ -130,6 +132,7 @@ " Theme Plug 'NLKNguyen/papercolor-theme' Plug 'joshdick/onedark.vim' +Plug 'rakr/vim-one' "Tcl Plug 'vim-scripts/tcl.vim--smithfield-indent', { 'for': 'tcl'} @@ -241,9 +244,6 @@ " augroup END -if !has("nvim") - set t_Co=256 -end let g:PaperColor_Theme_Options = { \ 'theme': { \ 'default': { @@ -254,8 +254,13 @@ let g:onedark_color_overrides = { \ "yellow": {"cterm": "3", "gui": "#ffc24b"} \} +" colorscheme onedark +set termguicolors + +let g:one_allow_italics=1 +colorscheme one set background=dark -colorscheme onedark + if s:darwin set background=dark colorscheme tomorrow-night @@ -266,10 +271,6 @@ set guifont=consolas:h10 endif -if has('nvim') - set notermguicolors -endif - set showmatch " Highlight matching brackets set wrap " Wrap lines @@ -1303,3 +1304,4 @@ if filereadable('.vimrc.local') source .vimrc.local endif +