blob: c615bd6d029c199b1fd396c09d6295c3055c759c (
plain) (
blame)
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
|
source $VIMRUNTIME/vimrc_example.vim
" -----------------------------------------------------------------------------
" File display
" -----------------------------------------------------------------------------
filetype plugin on
syntax enable
"set background=dark
set background=light
colorscheme solarized
" Don't wrap lines.
set nowrap
" -----------------------------------------------------------------------------
" Indentation
" -----------------------------------------------------------------------------
" 4 spaces per indentation level, no tabs.
set softtabstop=4
set shiftwidth=4
set expandtab
set autoindent
filetype indent on
" C++'s public/private/protected keywords don't increase indentation level.
set cinoptions+=g0
" -----------------------------------------------------------------------------
" User interface
" -----------------------------------------------------------------------------
" Highlight current line/column.
set cursorline
"set cursorcolumn
" Show current line/column number in the status bar.
set ruler
" Show line numbers on the left.
set number
" Add a vertical ruler.
set colorcolumn=80
" Show a few lines of context around the cursor.
set scrolloff=5
" -----------------------------------------------------------------------------
" Key bindings
" -----------------------------------------------------------------------------
" In insert mode, press F2 to enter 'paste mode'. Now you can paste text from
" elsewhere and _not_ mess up indentation. Nice and easy, right? Press F2 again
" to exit 'paste mode'.
nnoremap <F2> :set invpaste paste?<CR>
set pastetoggle=<F2>
set showmode
" -----------------------------------------------------------------------------
" System settings
" -----------------------------------------------------------------------------
" Backup files are written to ~/.vimtmp/backup/. I'm not sure how the whole
" thing's gonna work out in case of concurrent writes to multiple files with
" the same name, since backup file names will collide due to a long-standing
" Vim issue.
"
" Vim treats `backupdir` option inconsistently: if its value ends with two
" slashes, Vim doesn't convert the absolute path of the file being backed up
" to its backup file name (replacing directory separators with % signs) as it
" does with swap and 'persisent undo' files, but rather simply appends ~ to
" the end of file's name. For some reason it still works this way when there're
" two slashes at the end, so I'm gonna stick with this, hoping that this
" problem gets fixed in the future.
set backupdir=~/.vimtmp/backup//
set nobackup
set writebackup
" Swap files are written to ~/.vimrc/swap/.
set directory=~/.vimtmp/swap//
set swapfile
" 'Persistent undo' files are written to ~/.vimrc/undo/.
if has('persistent_undo')
set undodir=~/.vimtmp/undo//
set undofile
endif
" Enable current-directory .vimrc files.
set exrc
set secure
" Remember cursor position. This was copied from a random vimrc_example.vim.
" It should be picked up when sourcing vimrc_example.vim, but I'm currently
" using a platform that doesn't have this file.
autocmd BufReadPost *
\ if line("'\"") >= 1 && line("'\"") <= line("$") && &ft !~# 'commit'
\ | exe "normal! g`\""
\ | endif
" -----------------------------------------------------------------------------
" Search
" -----------------------------------------------------------------------------
set ignorecase
set smartcase
set hlsearch
set incsearch
" -----------------------------------------------------------------------------
" Directories
" -----------------------------------------------------------------------------
" Disable opening directories, netrw is too confusing.
" https://unix.stackexchange.com/q/297844
for f in argv()
if isdirectory(f)
echomsg "Cowardly refusing to edit directory: " . f
quit
endif
endfor
let loaded_netrwPlugin=1
" -----------------------------------------------------------------------------
" Clipboard
" -----------------------------------------------------------------------------
" Access X clipboard.
set clipboard=unnamedplus
|