From 263d4dc6dfd499bf20bf3303ad0afa48d76fd4bf Mon Sep 17 00:00:00 2001 From: Mitchell Riedstra Date: Wed, 8 Sep 2021 18:54:08 -0400 Subject: Add hybrid themes. Add ctags and clag lib path for Ubuntu and Void --- .gitmodules | 6 ++++++ init.vim | 19 ++++++++++++++----- pack/themes/start/hybrid | 1 + pack/themes/start/hybrid-orig | 1 + 4 files changed, 22 insertions(+), 5 deletions(-) create mode 160000 pack/themes/start/hybrid create mode 160000 pack/themes/start/hybrid-orig diff --git a/.gitmodules b/.gitmodules index add1721..a244c0d 100644 --- a/.gitmodules +++ b/.gitmodules @@ -73,3 +73,9 @@ [submodule "pack/plugins/start/fugitive"] path = pack/plugins/start/fugitive url = https://github.com/tpope/vim-fugitive +[submodule "pack/themes/start/hybrid"] + path = pack/themes/start/hybrid + url = https://github.com/kristijanhusak/vim-hybrid-material +[submodule "pack/themes/start/hybrid-orig"] + path = pack/themes/start/hybrid-orig + url = https://github.com/w0ng/vim-hybrid diff --git a/init.vim b/init.vim index f9a550e..cf77159 100644 --- a/init.vim +++ b/init.vim @@ -62,12 +62,17 @@ let g:netrw_liststyle=3 " Useful on some terminals, not always supported in old tmux versions " set termguicolors " let g:airline_theme="monochrome" -let g:airline_theme="distinguished" +" let g:airline_theme="distinguished" +let g:airline_theme="hybrid" -colorscheme 256_noir +" colorscheme 256_noir " colorscheme distinguished " colorscheme sane +set background=dark +let g:hybrid_transparent_background = 1 +colorscheme hybrid_material + set guifont=ProFontOTB\ 11 if has("gui_running") @@ -95,14 +100,18 @@ let g:syntastic_always_populate_loc_list = 1 " Commenting in and out blocks can be done with `gc` " https://github.com/tpope/vim-commentary -nmap :TagbarToggle -let g:tagbar_ctags_bin='uctags' " For improved Go support " go get github.com/jstemmer/gotags +nmap :TagbarToggle +" let g:tagbar_ctags_bin='uctags' +" let g:tagbar_ctags_bin='uctags' +let g:tagbar_ctags_bin='ctags' " For clang complete " path to directory where library can be found -let g:clang_library_path='/usr/local/lib' +" let g:clang_library_path='/usr/local/lib' +" let g:clang_library_path='/usr/lib/clang/12/lib' +let g:clang_library_path='/usr/lib/llvm-12/lib/libclang.so' " package clang-tools-extra on OpenBSD provides the library diff --git a/pack/themes/start/hybrid b/pack/themes/start/hybrid new file mode 160000 index 0000000..ad03127 --- /dev/null +++ b/pack/themes/start/hybrid @@ -0,0 +1 @@ +Subproject commit ad031275c63a05b6acb6014a2401d8719a290bd4 diff --git a/pack/themes/start/hybrid-orig b/pack/themes/start/hybrid-orig new file mode 160000 index 0000000..cc58baa --- /dev/null +++ b/pack/themes/start/hybrid-orig @@ -0,0 +1 @@ +Subproject commit cc58baabeabc7b83768e25b852bf89c34756bf90 -- cgit v1.2.3