comparison 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
comparison
equal deleted inserted replaced
281:dfd62b5a9962 282:6279917e1aaa
113 Plug 'honza/vim-snippets' 113 Plug 'honza/vim-snippets'
114 if has('nvim') 114 if has('nvim')
115 Plug 'neovim/nvim-lsp' 115 Plug 'neovim/nvim-lsp'
116 Plug 'nvim-lua/completion-nvim' 116 Plug 'nvim-lua/completion-nvim'
117 Plug 'nvim-lua/diagnostic-nvim' 117 Plug 'nvim-lua/diagnostic-nvim'
118 Plug 'nvim-treesitter/nvim-treesitter' 118 " Plug 'nvim-treesitter/nvim-treesitter'
119 Plug '~/Projects/nvim-treesitter'
120 Plug 'nvim-treesitter/playground'
119 Plug 'steelsojka/completion-buffers' 121 Plug 'steelsojka/completion-buffers'
120 endif 122 endif
121 123
122 " Copying 124 " Copying
123 Plug 'ShikChen/osc52.vim' 125 Plug 'ShikChen/osc52.vim'
128 Plug 'tpope/vim-projectionist' 130 Plug 'tpope/vim-projectionist'
129 131
130 " Theme 132 " Theme
131 Plug 'NLKNguyen/papercolor-theme' 133 Plug 'NLKNguyen/papercolor-theme'
132 Plug 'joshdick/onedark.vim' 134 Plug 'joshdick/onedark.vim'
135 Plug 'rakr/vim-one'
133 136
134 "Tcl 137 "Tcl
135 Plug 'vim-scripts/tcl.vim--smithfield-indent', { 'for': 'tcl'} 138 Plug 'vim-scripts/tcl.vim--smithfield-indent', { 'for': 'tcl'}
136 139
137 " Plug 'zegervdv/ale', { 'branch': 'add_verible' } 140 " Plug 'zegervdv/ale', { 'branch': 'add_verible' }
239 " autocmd! 242 " autocmd!
240 " autocmd ColorScheme * call ColorOverrides() 243 " autocmd ColorScheme * call ColorOverrides()
241 " augroup END 244 " augroup END
242 245
243 246
244 if !has("nvim")
245 set t_Co=256
246 end
247 let g:PaperColor_Theme_Options = { 247 let g:PaperColor_Theme_Options = {
248 \ 'theme': { 248 \ 'theme': {
249 \ 'default': { 249 \ 'default': {
250 \ 'allow_bold': 0 250 \ 'allow_bold': 0
251 \ } 251 \ }
252 \ } 252 \ }
253 \} 253 \}
254 let g:onedark_color_overrides = { 254 let g:onedark_color_overrides = {
255 \ "yellow": {"cterm": "3", "gui": "#ffc24b"} 255 \ "yellow": {"cterm": "3", "gui": "#ffc24b"}
256 \} 256 \}
257 " colorscheme onedark
258 set termguicolors
259
260 let g:one_allow_italics=1
261 colorscheme one
257 set background=dark 262 set background=dark
258 colorscheme onedark 263
259 if s:darwin 264 if s:darwin
260 set background=dark 265 set background=dark
261 colorscheme tomorrow-night 266 colorscheme tomorrow-night
262 set guifont=inconsolata:h13 267 set guifont=inconsolata:h13
263 elseif s:windows 268 elseif s:windows
264 set background=light 269 set background=light
265 colorscheme PaperColor 270 colorscheme PaperColor
266 set guifont=consolas:h10 271 set guifont=consolas:h10
267 endif
268
269 if has('nvim')
270 set notermguicolors
271 endif 272 endif
272 273
273 set showmatch " Highlight matching brackets 274 set showmatch " Highlight matching brackets
274 275
275 set wrap " Wrap lines 276 set wrap " Wrap lines
1301 1302
1302 " Load project local vimrc 1303 " Load project local vimrc
1303 if filereadable('.vimrc.local') 1304 if filereadable('.vimrc.local')
1304 source .vimrc.local 1305 source .vimrc.local
1305 endif 1306 endif
1307