2015-10-10 15:34:29 +02:00
|
|
|
|
""
|
|
|
|
|
"" Environment
|
|
|
|
|
""
|
|
|
|
|
|
2015-10-10 19:38:14 +02:00
|
|
|
|
" Vim environment
|
2016-04-13 21:39:52 +02:00
|
|
|
|
let cache = $XDG_CACHE_HOME .'/nvim'
|
|
|
|
|
let config = $XDG_CONFIG_HOME.'/nvim'
|
|
|
|
|
let plugins = cache.'/plugins'
|
|
|
|
|
|
|
|
|
|
let &directory = cache.',~/,/tmp'
|
|
|
|
|
let &backupdir = cache.',~/,/tmp'
|
|
|
|
|
let &viminfo = cache.'/info'
|
2015-10-10 15:34:29 +02:00
|
|
|
|
|
2015-10-10 19:38:14 +02:00
|
|
|
|
" Ctags data
|
2016-04-13 21:39:52 +02:00
|
|
|
|
let &tags = cache.'/tags'
|
2015-10-10 17:23:21 +02:00
|
|
|
|
|
2015-10-10 19:38:14 +02:00
|
|
|
|
" Keep history
|
2016-04-13 21:39:52 +02:00
|
|
|
|
let &undodir = cache.'/undo'
|
2015-10-10 17:23:21 +02:00
|
|
|
|
set undofile
|
|
|
|
|
|
2013-11-22 18:20:32 +01:00
|
|
|
|
|
2015-10-11 14:52:54 +02:00
|
|
|
|
""
|
|
|
|
|
"" Plugins
|
|
|
|
|
""
|
|
|
|
|
|
2016-04-13 21:39:52 +02:00
|
|
|
|
let &rtp .= ','.plugins.'/Vundle.vim'
|
|
|
|
|
call vundle#begin(plugins)
|
2015-10-11 14:52:54 +02:00
|
|
|
|
|
|
|
|
|
Plugin 'VundleVim/Vundle.vim'
|
|
|
|
|
Plugin 'kien/ctrlp.vim'
|
|
|
|
|
Plugin 'itchyny/lightline.vim'
|
|
|
|
|
Plugin 'townk/vim-autoclose'
|
|
|
|
|
Plugin 'tpope/vim-fugitive'
|
|
|
|
|
Plugin 'travitch/hasksyn'
|
2015-10-11 15:05:33 +02:00
|
|
|
|
Plugin 'plasticboy/vim-markdown'
|
|
|
|
|
Plugin 'LnL7/vim-nix'
|
2017-05-04 21:13:26 +02:00
|
|
|
|
Plugin 'kchmck/vim-coffee-script'
|
|
|
|
|
Plugin 'ngn/vim-apl'
|
2015-10-11 14:52:54 +02:00
|
|
|
|
Plugin 'ervandew/supertab'
|
|
|
|
|
Plugin 'majutsushi/tagbar'
|
|
|
|
|
Plugin 'scrooloose/syntastic'
|
2016-07-29 18:08:25 +02:00
|
|
|
|
Plugin 'airblade/vim-gitgutter'
|
2017-05-04 21:13:26 +02:00
|
|
|
|
Plugin 'sjl/gundo.vim'
|
2015-10-11 14:52:54 +02:00
|
|
|
|
|
|
|
|
|
call vundle#end()
|
|
|
|
|
|
|
|
|
|
|
2013-11-22 18:20:32 +01:00
|
|
|
|
""
|
2015-10-10 17:36:28 +02:00
|
|
|
|
"" Options
|
2013-11-22 18:20:32 +01:00
|
|
|
|
""
|
|
|
|
|
|
2015-10-10 17:36:28 +02:00
|
|
|
|
set hidden " Hide buffers
|
|
|
|
|
set incsearch " Incremental search
|
2015-10-10 15:34:29 +02:00
|
|
|
|
|
2015-10-10 17:36:28 +02:00
|
|
|
|
set ignorecase " Case insensitive search...
|
|
|
|
|
set smartcase " ...for lowercase terms
|
|
|
|
|
|
|
|
|
|
set showcmd " Show command while writing it
|
|
|
|
|
set ruler " Show line/column position
|
2016-01-17 16:04:28 +01:00
|
|
|
|
set nowrap " Disable line wrap
|
2015-10-11 13:55:15 +02:00
|
|
|
|
set novb " Disable visual beep
|
2015-10-11 15:05:33 +02:00
|
|
|
|
set nofoldenable " Disable folding
|
2015-10-10 17:36:28 +02:00
|
|
|
|
|
|
|
|
|
set nobackup " Disable ~backup
|
|
|
|
|
set noswapfile " Disable swap files
|
|
|
|
|
set writebackup " Enable temp backups
|
|
|
|
|
|
|
|
|
|
set nomodeline " Security
|
|
|
|
|
set tabpagemax=10 " Limit number of tabs to 10
|
|
|
|
|
set showmatch " Highlight matched parenthesis
|
|
|
|
|
set ffs=unix " Use UNIX file format
|
2016-04-13 21:39:52 +02:00
|
|
|
|
set clipboard=unnamedplus " Clipboard integration
|
2015-10-10 17:36:28 +02:00
|
|
|
|
set wildignore+=*/tmp/*,*.so,*.swp " Files to ignore
|
|
|
|
|
|
2015-10-12 00:09:54 +02:00
|
|
|
|
set shiftwidth=2 " Tab
|
|
|
|
|
set tabstop=2 "
|
|
|
|
|
set expandtab "
|
2015-10-10 17:36:28 +02:00
|
|
|
|
|
|
|
|
|
set number " Line numbering
|
2016-04-13 21:39:52 +02:00
|
|
|
|
set smartindent " Indentation
|
2015-10-10 17:36:28 +02:00
|
|
|
|
set noshowmode "
|
|
|
|
|
|
2015-10-10 19:38:14 +02:00
|
|
|
|
syntax on " Syntax highlighting
|
2016-04-13 21:39:52 +02:00
|
|
|
|
runtime colors.vim " Load color scheme
|
|
|
|
|
filetype indent plugin on " Identify file type
|
2015-10-10 17:36:28 +02:00
|
|
|
|
|
2015-10-10 19:38:14 +02:00
|
|
|
|
" Titlebar without “-VIM”
|
2015-10-10 17:36:28 +02:00
|
|
|
|
set titlestring=%t%(\ %M%)%(\ (%{expand(\"%:p:h\")})%)%(\ %a%)
|
2015-10-10 15:34:29 +02:00
|
|
|
|
|
2013-11-22 18:20:32 +01:00
|
|
|
|
|
|
|
|
|
""
|
2015-10-10 17:36:28 +02:00
|
|
|
|
"" Key bindings
|
2013-11-22 18:20:32 +01:00
|
|
|
|
""
|
2015-10-11 14:52:54 +02:00
|
|
|
|
let mapleader=","
|
2013-11-22 18:20:32 +01:00
|
|
|
|
|
2015-10-10 17:23:21 +02:00
|
|
|
|
" Windows navigation
|
|
|
|
|
map <C-k> <C-w><Up>
|
|
|
|
|
map <C-j> <C-w><Down>
|
|
|
|
|
map <C-l> <C-w><Right>
|
|
|
|
|
map <C-h> <C-w><Left>
|
2013-11-22 18:20:32 +01:00
|
|
|
|
|
2015-10-11 14:52:54 +02:00
|
|
|
|
map <Leader>t :TagbarToggle<CR>
|
|
|
|
|
inoremap jj <ESC>
|
2013-11-22 18:20:32 +01:00
|
|
|
|
|
|
|
|
|
""
|
2015-10-10 17:23:21 +02:00
|
|
|
|
"" Plugin options
|
2013-11-22 18:20:32 +01:00
|
|
|
|
""
|
|
|
|
|
|
2015-10-10 17:23:21 +02:00
|
|
|
|
" Lightline
|
2016-04-13 21:39:52 +02:00
|
|
|
|
runtime lightline.vim
|
2013-11-22 18:20:32 +01:00
|
|
|
|
|
2015-10-10 17:23:21 +02:00
|
|
|
|
" Syntastic
|
2015-10-10 19:38:14 +02:00
|
|
|
|
let g:syntastic_check_on_open = 1
|
|
|
|
|
let g:syntastic_enable_signs = 1
|
|
|
|
|
let g:syntastic_python_checkers = ["flake8", "python"]
|
2015-10-10 17:23:21 +02:00
|
|
|
|
let g:syntastic_python_python_exe = 'python3'
|
2013-11-22 18:20:32 +01:00
|
|
|
|
|
2015-10-10 17:23:21 +02:00
|
|
|
|
" Tagbar
|
|
|
|
|
let g:tagbar_status_func = "TagbarStatusFunc"
|
2015-10-10 19:38:14 +02:00
|
|
|
|
let g:tagbar_compact = 1
|
|
|
|
|
let g:tagbar_iconchars = [">", "∨"]
|
2013-11-22 18:20:32 +01:00
|
|
|
|
|
2015-10-10 17:23:21 +02:00
|
|
|
|
" MiniBufferExplorer
|
2015-10-10 19:38:14 +02:00
|
|
|
|
let g:miniBufExplMapWindowNavVim = 1
|
2015-10-10 17:23:21 +02:00
|
|
|
|
let g:miniBufExplMapWindowNavArrows = 1
|
2015-10-10 19:38:14 +02:00
|
|
|
|
let g:miniBufExplMapCTabSwitchBufs = 1
|
|
|
|
|
let g:miniBufExplModSelTarget = 1
|
2013-11-22 18:20:32 +01:00
|
|
|
|
|
2015-10-10 17:23:21 +02:00
|
|
|
|
" CtrlP
|
2015-10-10 19:38:14 +02:00
|
|
|
|
let g:ctrlp_clear_cache_on_exit = 0
|
2015-10-10 17:23:21 +02:00
|
|
|
|
let g:ctrlp_custom_ignore = {"dir": "\v[\/]\.(git|hg|svn|ve)$"}
|
2015-10-10 19:38:14 +02:00
|
|
|
|
let g:ctrlp_status_func = {"main": "CtrlPStatusMain",
|
|
|
|
|
\"prog": "CtrlPStatusProg"}
|
2013-11-22 18:20:32 +01:00
|
|
|
|
|