Browse Source

latest config

Emmanuel Buckshi 5 years ago
parent
commit
bbe245b769
1 changed files with 37 additions and 6 deletions
  1. 37 6
      init.vim

+ 37 - 6
init.vim

@@ -1,6 +1,6 @@
 let g:python_host_prog  = '/usr/local/bin/python'
 let g:python3_host_prog  = '/usr/local/bin/python3'
-set t_Co=256
+" set t_Co=256
 set number
 set laststatus=2
 set background=dark
@@ -9,19 +9,26 @@ set showcmd
 set nocompatible
 set path+=**
 set wildmenu
-colorscheme PaperColor
-
+" colorscheme PaperColor
+colorscheme ubloh
 " Specify a directory for plugins
 " - For Neovim: ~/.local/share/nvim/plugged
 " - Avoid using standard Vim directory names like 'plugin'
 call plug#begin('~/.local/share/nvim/plugs')
 
 " Make sure you use single quotes
-
-" Shorthand notation; fetches https://github.com/junegunn/vim-easy-align
+Plug 'arakashic/chromatica.nvim'
+Plug 'abudden/taghighlight-automirror'
+Plug 'tomasiser/vim-code-dark'
+Plug 'romainl/Apprentice'
 Plug 'junegunn/vim-easy-align'
+Plug 'vim-airline/vim-airline'
+Plug 'vim-airline/vim-airline-themes'
+Plug 'cocopon/iceberg.vim'
+Plug 'drewtempelmeyer/palenight.vim'
+Plug 'ayu-theme/ayu-vim'
+Plug 'arcticicestudio/nord-vim'
 
-Plug('arakashic/chromatica.nvim')
 " Any valid git URL is allowed
 Plug 'https://github.com/junegunn/vim-github-dashboard.git'
 
@@ -84,6 +91,7 @@ Plug 'zivyangll/git-blame.vim'
 Plug 'simplyzhao/cscope_maps.vim'
 
 Plug 'octol/vim-cpp-enhanced-highlight'
+Plug 'bfrg/vim-cpp-modern'
 
 call plug#end()
 
@@ -95,6 +103,13 @@ let g:cpp_class_scope_highlight = 1
 let g:cpp_member_variable_highlight = 1
 let g:cpp_class_decl_highlight = 1
 let g:cpp_experimental_template_highlight = 1
+
+let g:airline#extensions#tabline#enabled = 1
+" Chromatica for better better C/C++ syntax highlighting
+let g:chromatica#libclang_path='/usr/local/opt/llvm/lib'
+let g:chromatica#enable_at_startup=1
+
+
 " enable ncm2 for all buffers
 autocmd BufEnter * call ncm2#enable_for_buffer()
 
@@ -113,3 +128,19 @@ nnoremap <Leader>s :<C-u>call gitblame#echo()<CR>
 " example)
 "
 set tags+=/usr/local/include/node
+" colorscheme codedark
+
+let g:PaperColor_Theme_Options = {
+  \   'language': {
+  \     'python': {
+  \       'highlight_builtins' : 1
+  \     },
+  \     'cpp': {
+  \       'highlight_standard_library': 1
+  \     },
+  \     'c': {
+  \       'highlight_builtins' : 1
+  \     }
+  \   }
+  \ }
+