1
0
Fork 0

vimrc tweaks, and my custom solarized8 (with more trimming to come)

This commit is contained in:
Von Random 2018-07-13 20:01:56 +03:00
parent 94b52e8204
commit 186fc97c30
4 changed files with 1380 additions and 7 deletions

3
.gitmodules vendored
View file

@ -25,6 +25,3 @@
[submodule "vimwiki"] [submodule "vimwiki"]
path = vimpack/opt/vimwiki path = vimpack/opt/vimwiki
url = https://github.com/vimwiki/vimwiki.git 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

File diff suppressed because it is too large Load diff

5
vimrc
View file

@ -27,7 +27,7 @@ if v:version >= 703
endif endif
" fix termcap and ttymouse, but not for neovim " fix termcap and ttymouse, but not for neovim
if !has('nvim') 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 endif
" maps " maps
@ -69,8 +69,7 @@ if v:version >= 800
autocmd FileType sh packadd ale autocmd FileType sh packadd ale
if $TERM != 'linux' if $TERM != 'linux'
set termguicolors bg=dark color solarized8
colorscheme hybrid
endif endif
endif endif