blob: c331271bb76dbed716605cd82a62b81f40705aee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
|
set nocompatible " be iMproved, required
filetype plugin on
" Plugins
" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" alternatively, pass a path where Vundle should install plugins
"call vundle#begin('~/some/path/here')
" let Vundle manage Vundle, required
Plugin 'VundleVim/Vundle.vim'
Plugin 'ervandew/supertab'
Plugin 'tpope/vim-surround'
Plugin 'tpope/vim-repeat'
Plugin 'racer-rust/vim-racer'
Plugin 'davidhalter/jedi-vim'
Plugin 'agude/vim-eldar'
Plugin 'scrooloose/nerdtree'
" Track the engine.
Plugin 'SirVer/ultisnips'
" Snippets are separated from the engine. Add this if you want them:
Plugin 'honza/vim-snippets'
Plugin 'junegunn/goyo.vim'
Plugin 'jreybert/vimagit'
call vundle#end() " required
filetype plugin indent on " required
colorscheme eldar
syntax enable
set number relativenumber
set tabstop=4
set shiftwidth=4
set softtabstop=4
set noexpandtab
set inccommand=split
" Required for operations modifying multiple buffers like rename.
set hidden
" Snippits
" Trigger configuration. Do not use <tab> if you use https://github.com/Valloric/YouCompleteMe.
let g:UltiSnipsExpandTrigger="<c-b>"
let g:UltiSnipsJumpForwardTrigger="<c-b>"
let g:UltiSnipsJumpBackwardTrigger="<c-z>"
" If you want :UltiSnipsEdit to split your window.
let g:UltiSnipsEditSplit="vertical"
" inoremap <expr> <Tab> pumvisible() ? "\<C-n>" : "\<Tab>"
" inoremap <expr> <S-Tab> pumvisible() ? "\<C-p>" : "\<S-Tab>"
" File finding
set path+=**
set wildmenu
let g:netrw_liststyle=3
" autocmd BufEnter * call ncm2#enable_for_buffer()
" let g:ncm2#auto_popup = 0
set completeopt=menuone,preview
" Keymapping
map <C-n> :NERDTreeToggle<CR>
" Leader stuff
let mapleader=" "
map <leader>z :Goyo<CR>
map <leader>mm :make V=1<CR>
map <leader>mf :!make flash V=1<CR>
" Example on filetype specific
" autocmd FileType tex map <leader>o :w !detex \| wc -w<CR>
" Enforcing filetypes
autocmd BufRead,BufNewFile *.ino set filetype=c
autocmd FileType python setlocal completeopt-=preview
|