vim color and mouse config

nuc_private
Dario Ernst 9 years ago
parent 88b4878e29
commit 1b4426955c

@ -1,7 +1,16 @@
set termguicolors set termguicolors
colorscheme gruvbox set background=light
let g:one_allow_italics = 1 " I love italic for comments
let g:airline_theme='one'
colorscheme one
" Disable the scrollbars (NERDTree) " Disable the scrollbars (NERDTree)
set guioptions-=r set guioptions-=r
set guioptions-=L set guioptions-=L
" show trailing whitespace
:highlight ExtraWhitespace ctermbg=darkred guibg=darkred
:match ExtraWhitespace /\s\+\%#\@<!$/
set list
set listchars=tab:>-,extends:>,precedes:<

@ -43,10 +43,7 @@ map gd :bd<cr>
set hidden set hidden
" no mouse " no mouse
set mouse=vi set mouse=
" show trailing whitespace " always use x clipboard
:highlight ExtraWhitespace ctermbg=red guibg=red set clipboard+=unnamedplus
:match ExtraWhitespace /\s\+\%#\@<!$/
set list
set listchars=tab:>-,extends:>,precedes:<

@ -4,6 +4,7 @@ Plug 'bling/vim-airline'
Plug 'nanotech/jellybeans.vim' Plug 'nanotech/jellybeans.vim'
Plug 'tomasr/molokai' Plug 'tomasr/molokai'
Plug 'morhetz/gruvbox' Plug 'morhetz/gruvbox'
Plug 'rakr/vim-one'
Plug 'tpope/vim-fugitive' Plug 'tpope/vim-fugitive'
Plug 'sheerun/vim-polyglot' Plug 'sheerun/vim-polyglot'
@ -26,6 +27,10 @@ Plug 'easymotion/vim-easymotion'
Plug 'terryma/vim-multiple-cursors' Plug 'terryma/vim-multiple-cursors'
Plug 'Raimondi/delimitMate' Plug 'Raimondi/delimitMate'
" session mgmt
Plug 'tpope/vim-obsession'
call g:plug#end() call g:plug#end()
for fpath in split(globpath('~/.config/nvim/conf.d', '*.vim'), '\n') for fpath in split(globpath('~/.config/nvim/conf.d', '*.vim'), '\n')

Loading…
Cancel
Save