neovim, switch to flattened (another theme again, I know right?)
This commit is contained in:
parent
66f366ad52
commit
ac3580c83f
7 changed files with 10 additions and 20 deletions
12
.gitmodules
vendored
12
.gitmodules
vendored
|
@ -16,15 +16,6 @@
|
||||||
[submodule "vim-tru-typewriter"]
|
[submodule "vim-tru-typewriter"]
|
||||||
path = vimpack/start/vim-tru-typewriter
|
path = vimpack/start/vim-tru-typewriter
|
||||||
url = https://git.vdrandom.org/vim-tru-typewriter
|
url = https://git.vdrandom.org/vim-tru-typewriter
|
||||||
[submodule "vim-gruvbox8"]
|
|
||||||
path = vimpack/start/vim-gruvbox8
|
|
||||||
url = https://github.com/lifepillar/vim-gruvbox8.git
|
|
||||||
[submodule "vim-solarized8"]
|
|
||||||
path = vimpack/start/vim-solarized8
|
|
||||||
url = https://github.com/lifepillar/vim-solarized8.git
|
|
||||||
[submodule "PaperColor"]
|
|
||||||
path = vimpack/start/papercolor-theme
|
|
||||||
url = https://github.com/NLKNguyen/papercolor-theme.git
|
|
||||||
[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
|
||||||
|
@ -37,3 +28,6 @@
|
||||||
[submodule "vim-gitgutter"]
|
[submodule "vim-gitgutter"]
|
||||||
path = vimpack/start/vim-gitgutter
|
path = vimpack/start/vim-gitgutter
|
||||||
url = https://github.com/airblade/vim-gitgutter.git
|
url = https://github.com/airblade/vim-gitgutter.git
|
||||||
|
[submodule "flattened"]
|
||||||
|
path = vimpack/start/flattened
|
||||||
|
url = https://github.com/romainl/flattened.git
|
||||||
|
|
1
vimpack/start/flattened
Submodule
1
vimpack/start/flattened
Submodule
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit a4e55da1a35ea565216597f893dcf8d479aefe6a
|
|
@ -1 +0,0 @@
|
||||||
Subproject commit 1d7ec4e7cd7ee6b689baecd9002342cc55de6c20
|
|
|
@ -1 +0,0 @@
|
||||||
Subproject commit 0d6c7adfcefc7eebc6bb711a927740dde6191e78
|
|
|
@ -1 +0,0 @@
|
||||||
Subproject commit ff7ec263d934320deb9c49b2ca8af61caf072f01
|
|
9
vimrc
9
vimrc
|
@ -69,14 +69,7 @@ if v:version >= 800
|
||||||
autocmd FileType python packadd jedi-vim | packadd ale
|
autocmd FileType python packadd jedi-vim | packadd ale
|
||||||
autocmd FileType sh packadd ale
|
autocmd FileType sh packadd ale
|
||||||
|
|
||||||
" yaaay themes
|
colorscheme flattened_light
|
||||||
if $TERM =~ '^\(rxvt\|st\|tmux\|xterm\)'
|
|
||||||
let &t_8f = "\033[38;2;%lu;%lu;%lum"
|
|
||||||
let &t_8b = "\033[48;2;%lu;%lu;%lum"
|
|
||||||
set termguicolors
|
|
||||||
endif
|
|
||||||
set bg=dark
|
|
||||||
colorscheme gruvbox8
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
syntax on
|
syntax on
|
||||||
|
|
5
zshrc
5
zshrc
|
@ -228,4 +228,9 @@ greset() {
|
||||||
/usr/bin/git clean -fd
|
/usr/bin/git clean -fd
|
||||||
/usr/bin/git reset --hard
|
/usr/bin/git reset --hard
|
||||||
}
|
}
|
||||||
|
vim() {
|
||||||
|
local vimbin
|
||||||
|
vimbin=$(whence nvim) || vimbin=$(whence vim)
|
||||||
|
$vimbin "$@"
|
||||||
|
}
|
||||||
# }}}
|
# }}}
|
||||||
|
|
Loading…
Reference in a new issue