diff options
author | Juan J. Martinez <jjm@usebox.net> | 2019-05-08 15:22:17 +0100 |
---|---|---|
committer | Juan J. Martinez <jjm@usebox.net> | 2022-05-29 22:57:28 +0100 |
commit | 27a2075a57c4ff9db7286b45592fabe7aa3060dd (patch) | |
tree | 3ae583a4d4e07a18259f9aa16590ba18582e25a9 | |
parent | 533642bb333fd7c4018a2eab6085f9ad1418f4e7 (diff) | |
download | dotnvim-27a2075a57c4ff9db7286b45592fabe7aa3060dd.tar.gz dotnvim-27a2075a57c4ff9db7286b45592fabe7aa3060dd.zip |
Changed Monokai implementation
-rw-r--r-- | .gitmodules | 6 | ||||
m--------- | bundle/base16-vim | 0 | ||||
m--------- | bundle/vim-monokai | 0 | ||||
-rw-r--r-- | vimrc | 3 |
4 files changed, 5 insertions, 4 deletions
diff --git a/.gitmodules b/.gitmodules index e92aa59..636e150 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,6 +1,3 @@ -[submodule "bundle/base16-vim"] - path = bundle/base16-vim - url = https://github.com/chriskempson/base16-vim [submodule "bundle/syntastic"] path = bundle/syntastic url = https://github.com/scrooloose/syntastic.git @@ -40,3 +37,6 @@ [submodule "bundle/terminus"] path = bundle/terminus url = https://github.com/wincent/terminus +[submodule "bundle/vim-monokai"] + path = bundle/vim-monokai + url = https://github.com/crusoexia/vim-monokai.git diff --git a/bundle/base16-vim b/bundle/base16-vim deleted file mode 160000 -Subproject 2073e2dd9fa0172ccdba92b3f0df25642a69f7d diff --git a/bundle/vim-monokai b/bundle/vim-monokai new file mode 160000 +Subproject 31209057d2219a8d88bff0675020a1833864de8 @@ -67,7 +67,8 @@ call pathogen#helptags() " looks nice; apparently needs to go after pathogen set termguicolors set background=dark -colorscheme base16-monokai +let g:monokai_term_italic=1 +colorscheme monokai " for tmux, screen, etc set t_ut= |