diff options
| author | Ahmed Abdelhalim <[email protected]> | 2022-08-05 02:33:07 +0200 |
|---|---|---|
| committer | Ahmed Abdelhalim <[email protected]> | 2022-08-05 02:33:07 +0200 |
| commit | 59fb3033da6f9daa7fc7065f65410d8ed4557f20 (patch) | |
| tree | 21dc8ea50ddfe8025331f6e7d83ab1581492e696 /.vimrc | |
| parent | d8207e294933e7b052a8720375319d9bdaf53f83 (diff) | |
Update the colorscheme section for the new hybrid theme
Diffstat (limited to '.vimrc')
| -rw-r--r-- | .vimrc | 21 |
1 files changed, 12 insertions, 9 deletions
@@ -41,10 +41,21 @@ syntax on filetype plugin indent on "====== End of Plug Required Block and plugins -let mapleader = ';' " define map leader +let mapleader = ';' + +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +" Colorscheme +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" set background=dark colorscheme hybrid +" Use darker backgrounnd 233, the default is 234, lighter color 235 (for color columns) +highlight Normal ctermbg=233 +highlight ColorColumn ctermbg=234 + +let &colorcolumn="80,".join(range(121,125),",") " Highlight the 80, 121-> columns +" let &colorcolumn="80" " Highlight the 80th column only + """"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" " => Vim variables """"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" @@ -148,14 +159,6 @@ autocmd BufNewFile,BufRead *.yaml.gotmpl set filetype=yaml " for highlighting autocmd FileType gitcommit setlocal spell " spell check commits autocmd FileType gitcommit set complete+=spell " spell complete with CTRL+N/CTRL+P autocmd FileType ruby setlocal nospell " disable spell checking for ruby documentation -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" -" => MISC -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" -"Highlight the 80, 120 columns -"============================= -highlight ColorColumn ctermbg=235 guibg=#2c2d27 -let &colorcolumn="80,".join(range(121,130),",") -" let &colorcolumn="80" """""""""""""""""""""""""""""""""""""""""""""""""""""""""""" " => Plugin maps |
