Mercurial > dotfiles
changeset 282:6279917e1aaa
Switch to vim-one colorscheme
author | zegervdv <zegervdv@me.com> |
---|---|
date | Sun, 30 Aug 2020 09:49:33 +0200 |
parents | dfd62b5a9962 |
children | a795980b700e |
files | dot_config/kitty/kitty.conf dot_config/nvim/init.lua dot_config/nvim/init.vim |
diffstat | 3 files changed, 20 insertions(+), 12 deletions(-) [+] |
line wrap: on
line diff
--- 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
--- 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 = {
--- 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 +