-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdot_vimrc.tmpl
109 lines (108 loc) · 3.07 KB
/
dot_vimrc.tmpl
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
" Make Vim more useful
set nocompatible
" Use the OS clipboard by default (on versions compiled with `+clipboard`)
set clipboard=unnamed
" Enhance command-line completion
set wildmenu
" Allow cursor keys in insert mode
set esckeys
" Allow backspace in insert mode
set backspace=indent,eol,start
" Optimize for fast terminal connections
set ttyfast
" Add the g flag to search/replace by default
set gdefault
" Use UTF-8
set encoding=utf-8
" Change mapleader
let mapleader=","
" Centralize backups, swapfiles and undo history
{{- if .is.windows }}
if !isdirectory($HOME . "/vimfiles/backups")
call mkdir($HOME . "/vimfiles/backups", "p", 0700)
endif
set backupdir=~/vimfiles/backups
if !isdirectory($HOME . "/vimfiles/swaps")
call mkdir($HOME . "/vimfiles/swaps", "p", 0700)
endif
set directory=~/vimfiles/swaps
if !isdirectory($HOME . "/vimfiles/undo")
call mkdir($HOME . "/vimfiles/undo", "p", 0700)
endif
set undodir=~/vimfiles/undo
{{- else }}
if !isdirectory($HOME . "/.vim/backups")
call mkdir($HOME . "/.vim/backups", "p", 0700)
endif
set backupdir=~/.vim/backups
if !isdirectory($HOME . "/.vim/swaps")
call mkdir($HOME . "/.vim/swaps", "p", 0700)
endif
set directory=~/.vim/swaps
if !isdirectory($HOME . "/.vim/undo")
call mkdir($HOME . "/.vim/undo", "p", 0700)
endif
set undodir=~/.vim/undo
{{- end }}
" Respect modeline in files
set modeline
" Enable per-directory .vimrc files and disable unsafe commands in them
set exrc
set secure
" Toggle line numbers with ,l
map <leader>l <ESC>:exec &number==1 ? "set nonumber" : "set number"<CR>
" Enable syntax highlighting
syntax on
" Make tabs as wide as four spaces
set tabstop=4
" Show tabs and spaces
set lcs=tab:▸\ ,trail:·
" Toggle above with ,L
map <leader>L <ESC>:exec &list==1 ? "set nolist" : "set list"<CR>
" Highlight searches
set hlsearch
" Ignore case of searches
set ignorecase
" Highlight dynamically as pattern is typed
set incsearch
" Always show status line
set laststatus=2
" Toggle mouse with ,m
map <leader>m <ESC>:exec &mouse!=""? "set mouse=" : "set mouse=a"<CR>
" Show the cursor position
set ruler
" Don’t show the intro message when starting Vim
set shortmess=atI
" Show the current mode
set showmode
" Show the filename in the window titlebar
set title
" Show the (partial) command as it’s being typed
set showcmd
" Start scrolling three lines before the horizontal window border
set scrolloff=3
" Dark background, more visible on dark terminals
set background=dark
" Indent with spaces by default
set tabstop=4
set expandtab
" Strip trailing whitespace (,ss)
function! StripWhitespace()
let save_cursor = getpos(".")
let old_query = getreg('/')
:%s/\s\+$//e
call setpos('.', save_cursor)
call setreg('/', old_query)
endfunction
noremap <leader>ss :call StripWhitespace()<CR>
" Save a file as root (,W)
noremap <leader>W :w !sudo tee % > /dev/null<CR>
" Automatic commands
if has("autocmd")
" Enable file type detection
filetype on
" Treat .json files as .js
autocmd BufNewFile,BufRead *.json setfiletype json syntax=javascript
" Treat .md files as Markdown
autocmd BufNewFile,BufRead *.md setlocal filetype=markdown
endif