-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.vimrc
68 lines (48 loc) · 1.13 KB
/
.vimrc
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
" No swap-file
set noswapfile
" Syntax highlighting
syntax on
" Searching
set hlsearch
set incsearch
" Fix backspace
set backspace=indent,eol,start
" Open new split to the right
set splitright
" Enable filetype plugins and indentation
filetype plugin indent on
" Enable the mouse
set mouse=a
set ttymouse=xterm2
" Use the system clipboard register
set clipboard=unnamed
" Needed for correct colors in tmux
set background=dark
" No highlight in vertical split line
highlight VertSplit cterm=NONE
" No extra status line when multiple windows open
"set laststatus=0
" Remove vertical split fill character
set fillchars+=vert:\
"List plugins with vim-plug, use :PlugInstall to install all.
call plug#begin()
" File browsing
" Plug 'scrooloose/nerdtree'
" NERDTree mappings
"map = :NERDTreeToggleVCS<CR>
" Terraform
Plug 'hashivim/vim-terraform'
" Python
Plug 'psf/black'
"Plug 'python-mode/python-mode'
" Go
Plug 'fatih/vim-go', { 'do': ':GoUpdateBinaries' }
" A colorscheme
"Plug 'jnurmine/Zenburn'
"Plug 'ericbn/vim-solarized'
" Fzf
Plug 'junegunn/fzf'
call plug#end()
" Edit completion
set wildcharm=<C-z>
nnoremap ,e :e **/*<C-z><S-Tab>