101 lines
2.4 KiB
VimL
101 lines
2.4 KiB
VimL
|
|
|
|
" General Options {{{
|
|
" =====================
|
|
let mapleader=';'
|
|
|
|
syntax enable
|
|
set background=dark
|
|
colorscheme desert
|
|
|
|
set number " line numbers on the right side
|
|
set showcmd " show the commands while typing
|
|
set splitright " open new splits on the right
|
|
set splitbelow " open new splits below
|
|
set autoread " autoreload file on change
|
|
set scrolloff=8 " keep the cursor 8 lines away from the top/bottom
|
|
set ruler " show the lines/% bottomright
|
|
"set encoding=utf-8 " set default encoding
|
|
set laststatus=2 " always show the status line
|
|
|
|
" wrap lines at 72 characters
|
|
"set formatprg=par\ -w72
|
|
set formatoptions=tcrqnlmj
|
|
set textwidth=72
|
|
|
|
" indentation
|
|
set tabstop=4 " tab is 4 width
|
|
set shiftwidth=4 " for use with > and <
|
|
set expandtab " tab key puts spaces
|
|
set list " show whitespace, configure below
|
|
set listchars=tab:·\ ,trail:·
|
|
" display tabs with a leading \cdot
|
|
" trailing whitespace looks like \cdot
|
|
|
|
" Learning to use decent vim.
|
|
noremap <Up> <NOP>
|
|
noremap <Down> <NOP>
|
|
noremap <Left> <NOP>
|
|
noremap <Right> <NOP>
|
|
|
|
set foldlevelstart=2
|
|
" General Options }}}
|
|
|
|
" Plugins {{{
|
|
" =====================
|
|
|
|
" Plugged
|
|
" -------
|
|
call plug#begin('~/.config/nvim/plugged')
|
|
Plug 'ctrlpvim/ctrlp.vim'
|
|
Plug 'bling/vim-airline'
|
|
Plug 'scrooloose/nerdtree'
|
|
Plug 'junegunn/vim-easy-align'
|
|
Plug 'easymotion/vim-easymotion'
|
|
Plug 'tpope/vim-fugitive'
|
|
Plug 'rust-lang/rust.vim'
|
|
Plug 'Valloric/YouCompleteMe'
|
|
Plug 'altercation/vim-colors-solarized'
|
|
Plug 'chriskempson/base16-vim'
|
|
"Plugin 'LaTeX-Box-Team/LaTeX-Box'
|
|
"Plugin 'chase/vim-ansible-yaml'
|
|
call plug#end()
|
|
|
|
" Plugin configuration
|
|
" --------------------
|
|
let g:ctrlp_map='<Leader>l'
|
|
|
|
let g:airline_powerline_fonts=1
|
|
|
|
nnoremap <Leader>t :NERDTreeToggle<CR><CR>
|
|
let NERDTreeIgnore=[
|
|
\ ".*\\.class$",
|
|
\ ".*\\.o$",
|
|
\ ".*\\.hi$",
|
|
\ ".*\\.pyc$"
|
|
\ ]
|
|
|
|
xnoremap <Leader>a <Plug>(EasyAlign)
|
|
nmap <Leader>a <Plug>(EasyAlign)
|
|
|
|
let g:EasyMotion_do_mapping=0
|
|
nmap <Leader>w <Plug>(easymotion-w)
|
|
nmap <Leader>s <Plug>(easymotion-s)
|
|
nmap <Leader>j <Plug>(easymotion-j)
|
|
nmap <Leader>k <Plug>(easymotion-k)
|
|
|
|
let g:ycm_global_ycm_extra_conf = '~/.config/nvim/ycm_extra_conf.py'
|
|
"set completeopt=menu
|
|
|
|
set t_Co=256
|
|
let g:solarized_termcolors=256
|
|
let g:solarized_contrast="normal"
|
|
let g:solarized_underline=0
|
|
let g:solarized_termtrans=1
|
|
|
|
let base16colorspace=256
|
|
colorscheme base16-3024
|
|
" Plugged }}}
|
|
|
|
" vim: foldmethod=marker
|