no need for fancy coloring with st, also cleaning
This commit is contained in:
parent
76a54ee018
commit
209a989d81
@ -5,8 +5,6 @@
|
|||||||
let mapleader=';'
|
let mapleader=';'
|
||||||
|
|
||||||
syntax enable
|
syntax enable
|
||||||
set background=dark
|
|
||||||
colorscheme darkblue
|
|
||||||
|
|
||||||
set mouse= " fuck you, mouse
|
set mouse= " fuck you, mouse
|
||||||
set number " line numbers on the right side
|
set number " line numbers on the right side
|
||||||
@ -59,22 +57,28 @@ nnoremap <Leader>cp :cprevious<CR>
|
|||||||
" Plugged
|
" Plugged
|
||||||
" -------
|
" -------
|
||||||
call plug#begin('~/.config/nvim/plugged')
|
call plug#begin('~/.config/nvim/plugged')
|
||||||
|
" Layout
|
||||||
Plug 'bling/vim-airline'
|
Plug 'bling/vim-airline'
|
||||||
Plug 'scrooloose/nerdtree', { 'on': 'NERDTreeToggle' }
|
|
||||||
Plug 'junegunn/vim-easy-align'
|
|
||||||
Plug 'easymotion/vim-easymotion'
|
|
||||||
Plug 'tpope/vim-fugitive'
|
|
||||||
Plug 'rust-lang/rust.vim', { 'for': 'rust' }
|
|
||||||
Plug 'Valloric/YouCompleteMe'
|
|
||||||
Plug 'chriskempson/base16-vim'
|
|
||||||
Plug 'LaTeX-Box-Team/LaTeX-Box', { 'for': 'tex' }
|
|
||||||
Plug 'kassio/neoterm', { 'on': 'T' }
|
|
||||||
Plug 'junegunn/vim-peekaboo'
|
Plug 'junegunn/vim-peekaboo'
|
||||||
|
" Files
|
||||||
|
Plug 'scrooloose/nerdtree', { 'on': 'NERDTreeToggle' }
|
||||||
|
Plug 'junegunn/fzf.vim', { 'on': ['Rg', 'Files', 'Tags'] }
|
||||||
|
" Movement
|
||||||
|
Plug 'easymotion/vim-easymotion'
|
||||||
|
Plug 'haya14busa/incsearch.vim'
|
||||||
Plug 'ludovicchabant/vim-gutentags'
|
Plug 'ludovicchabant/vim-gutentags'
|
||||||
Plug 'majutsushi/tagbar'
|
Plug 'majutsushi/tagbar'
|
||||||
|
" Integration
|
||||||
|
Plug 'tpope/vim-fugitive', { 'on': ['Gdiff', 'Gstatus', 'Gcommit', 'Gblame'] }
|
||||||
|
Plug 'kassio/neoterm', { 'on': 'T' }
|
||||||
|
" Formatting
|
||||||
|
Plug 'junegunn/vim-easy-align', { 'on': 'EasyAlign' }
|
||||||
|
" Languages
|
||||||
|
Plug 'LaTeX-Box-Team/LaTeX-Box', { 'for': 'tex' }
|
||||||
|
Plug 'rust-lang/rust.vim', { 'for': 'rust' }
|
||||||
Plug 'neovimhaskell/haskell-vim', { 'for': 'haskell' }
|
Plug 'neovimhaskell/haskell-vim', { 'for': 'haskell' }
|
||||||
Plug 'haya14busa/incsearch.vim'
|
" Completion
|
||||||
Plug 'junegunn/fzf.vim'
|
Plug 'Valloric/YouCompleteMe'
|
||||||
call plug#end()
|
call plug#end()
|
||||||
|
|
||||||
" Plugin configuration
|
" Plugin configuration
|
||||||
@ -89,8 +93,8 @@ let NERDTreeIgnore=[
|
|||||||
\ ".*\\.pyc$"
|
\ ".*\\.pyc$"
|
||||||
\ ]
|
\ ]
|
||||||
|
|
||||||
xnoremap <Leader>a <Plug>(EasyAlign)
|
xnoremap <Leader>a :EasyAlign<CR>
|
||||||
nmap <Leader>a <Plug>(EasyAlign)
|
nmap <Leader>a :EasyAlign<CR>
|
||||||
|
|
||||||
let g:EasyMotion_do_mapping=0
|
let g:EasyMotion_do_mapping=0
|
||||||
let g:EasyMotion_startofline=0
|
let g:EasyMotion_startofline=0
|
||||||
@ -104,11 +108,6 @@ let g:ycm_global_ycm_extra_conf='~/.config/nvim/ycm_extra_conf.py'
|
|||||||
let g:ycm_rust_src_path='/data/programming/rustc-1.7.0/src'
|
let g:ycm_rust_src_path='/data/programming/rustc-1.7.0/src'
|
||||||
set completeopt=menu
|
set completeopt=menu
|
||||||
|
|
||||||
let base16colorspace=256
|
|
||||||
colorscheme base16-brewer
|
|
||||||
" damn base16's grey linenr background
|
|
||||||
highlight LineNr ctermfg=08 ctermbg=NONE
|
|
||||||
|
|
||||||
let g:gutentags_cache_dir = '~/.cache/gutentag'
|
let g:gutentags_cache_dir = '~/.cache/gutentag'
|
||||||
|
|
||||||
nnoremap <Leader>o :Tagbar<CR>
|
nnoremap <Leader>o :Tagbar<CR>
|
||||||
|
Loading…
Reference in New Issue
Block a user