vimrc tweaks, and my custom solarized8 (with more trimming to come)
This commit is contained in:
parent
94b52e8204
commit
186fc97c30
4 changed files with 1380 additions and 7 deletions
3
.gitmodules
vendored
3
.gitmodules
vendored
|
@ -25,6 +25,3 @@
|
|||
[submodule "vimwiki"]
|
||||
path = vimpack/opt/vimwiki
|
||||
url = https://github.com/vimwiki/vimwiki.git
|
||||
[submodule "vim-solarized8"]
|
||||
path = vimpack/opt/vim-solarized8
|
||||
url = https://github.com/lifepillar/vim-solarized8.git
|
||||
|
|
|
@ -1 +0,0 @@
|
|||
Subproject commit ff7ec263d934320deb9c49b2ca8af61caf072f01
|
1378
vimpack/start/vim-org/colors/solarized8.vim
Normal file
1378
vimpack/start/vim-org/colors/solarized8.vim
Normal file
File diff suppressed because it is too large
Load diff
5
vimrc
5
vimrc
|
@ -27,7 +27,7 @@ if v:version >= 703
|
|||
endif
|
||||
" fix termcap and ttymouse, but not for neovim
|
||||
if !has('nvim')
|
||||
set ttymouse=sgr t_vb= t_8f=[38;2;%lu;%lu;%lum t_8b=[48;2;%lu;%lu;%lum
|
||||
set ttymouse=sgr t_vb= t_Co=256 t_8f=[38;2;%lu;%lu;%lum t_8b=[48;2;%lu;%lu;%lum
|
||||
endif
|
||||
|
||||
" maps
|
||||
|
@ -69,8 +69,7 @@ if v:version >= 800
|
|||
autocmd FileType sh packadd ale
|
||||
|
||||
if $TERM != 'linux'
|
||||
set termguicolors bg=dark
|
||||
colorscheme hybrid
|
||||
color solarized8
|
||||
endif
|
||||
endif
|
||||
|
||||
|
|
Loading…
Reference in a new issue