Tweaked visuals

This commit is contained in:
Marco Thomas
2019-12-18 17:30:02 +01:00
parent 4d1526edb8
commit c3a9905230

View File

@@ -13,6 +13,7 @@ Plugin 'VundleVim/Vundle.vim'
Plugin 'jiangmiao/auto-pairs' Plugin 'jiangmiao/auto-pairs'
Plugin 'scrooloose/nerdtree' Plugin 'scrooloose/nerdtree'
Plugin 'editorconfig/editorconfig-vim' Plugin 'editorconfig/editorconfig-vim'
Plugin 'maxboisvert/vim-simple-complete'
" Colorscheme " Colorscheme
Plugin 'joshdick/onedark.vim' Plugin 'joshdick/onedark.vim'
@@ -24,9 +25,17 @@ filetype plugin indent on
" Vundle Plugin Manager - END " Vundle Plugin Manager - END
" Plugin Settings " Plugin Settings
" NerdTree
let NERDTreeShowHidden=1 let NERDTreeShowHidden=1
let g:lightline={ 'colorscheme':'wombat', } " Lightline Statusbar
set laststatus=2 " lightline set laststatus=2
let g:lightline = {
\ 'colorscheme': 'wombat',
\ 'active': {
\ 'left': [ [ 'mode', 'paste' ], [ 'readonly', 'absolutepath', 'modified' ] ],
\}
\ }
" Onedark Colorscheme
let g:onedark_hide_endofbuffer=1 let g:onedark_hide_endofbuffer=1
let g:onedark_terminal_italics=1 let g:onedark_terminal_italics=1
@@ -49,8 +58,10 @@ set mat=5
" General " General
set noswapfile set noswapfile
set confirm "cant quit wo saving set confirm "cant quit wo saving
set showmode " shows editing mode in status "set showmode " shows editing mode in status
set showcmd " shows commands in status set noshowmode " reverse of above
" set showcmd " shows commands in status
set noshowcmd " reverse of above
set encoding=utf-8 set encoding=utf-8
set mouse=a set mouse=a
set mouse=c set mouse=c
@@ -67,7 +78,8 @@ set smartindent
" Whitespaces " Whitespaces
set list set list
"hi SpecialKey ctermbg=Darkgray " colored tabs "hi SpecialKey ctermbg=Darkgray " colored tabs
set list listchars=tab:>-,trail:\\ set list listchars=tab:>-,trail:\\ " default
" ADD JUST TRAILING HERE " just trailing
" Search " Search
set incsearch set incsearch
@@ -91,6 +103,5 @@ if has("autocmd")
\| exe "normal! g'\"" | endif \| exe "normal! g'\"" | endif
endif endif
" no clue, but didn't bother removing it " no clue, got it from a co-worker
au BufNewFile,BufRead *.itex set filetype=tex au BufNewFile,BufRead *.itex set filetype=tex