# HG changeset patch # User zegervdv # Date 1598773773 -7200 # Node ID 6279917e1aaa404a0d68ddb0a6a77c519e107146 # Parent dfd62b5a9962d33a9b884ee5862291cb3fe74fa8 Switch to vim-one colorscheme diff -r dfd62b5a9962 -r 6279917e1aaa dot_config/kitty/kitty.conf --- a/dot_config/kitty/kitty.conf Tue Aug 25 09:48:17 2020 +0200 +++ b/dot_config/kitty/kitty.conf Sun Aug 30 09:49:33 2020 +0200 @@ -1,6 +1,7 @@ # vim:fileencoding=utf-8:ft=conf font_family Fira Code Retina +italic_font Iosevka Term Italic cursor #eeeeee @@ -8,7 +9,8 @@ window_padding_width 4 foreground #eeeeee -background #282828 +# background #282828 +background #282c34 color0 #282828 color8 #484848 @@ -25,8 +27,6 @@ color4 #b3deef color12 #b3deef -# color5 #d3b987 -# color13 #d3b987 color5 #c678dd color13 #c678dd diff -r dfd62b5a9962 -r 6279917e1aaa dot_config/nvim/init.lua --- a/dot_config/nvim/init.lua Tue Aug 25 09:48:17 2020 +0200 +++ b/dot_config/nvim/init.lua Sun Aug 30 09:49:33 2020 +0200 @@ -31,6 +31,12 @@ }, }, }, + playground = { + enable = true, + disable = {}, + updatetime = 25, + persist_queries = false + } } local chain_complete_list = { diff -r dfd62b5a9962 -r 6279917e1aaa dot_config/nvim/init.vim --- 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 +