-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.vimrc
More file actions
34 lines (27 loc) · 744 Bytes
/
.vimrc
File metadata and controls
34 lines (27 loc) · 744 Bytes
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
set nocompatible " be iMproved, required
filetype off " required
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
Plugin 'wakatime/vim-wakatime'
call vundle#end()
filetype plugin indent on
" Specify a directory for plugins (for Neovim: ~/.local/share/nvim/plugged)
call plug#begin('~/.vim/plugged')
Plug 'elixir-lang/vim-elixir'
call plug#end()
filetype plugin indent on
" show existing tab with 2 spaces width
set tabstop=2
" when indenting with '>', use 2 spaces width
set shiftwidth=2
" On pressing tab, insert 2 spaces
set expandtab
// :find finds recursivly
set path+=**
set wildmenu
" rebind <Esc> to ^
" :imap 1 <Esc>
" Set the delay after hitting <Esc> to 0
set timeoutlen=1000 ttimeoutlen=0
" Escape with jk
:imap jk <Esc>