]> ruderich.org/simon Gitweb - config/dotfiles.git/blob - vimrc
631c84405a266078608de28c8243b7b2c124bc88
[config/dotfiles.git] / vimrc
1 " Vim main configuration file.
2
3
4 " Make sure Vim (and not Vi) settings are enabled.
5 set nocompatible
6
7
8 " EDIT SETTINGS
9
10 " Enable automatic file detection, plugin and indention.
11 filetype plugin indent on
12
13 " Use UTF-8 file encoding for all files.
14 set fileencodings=utf-8
15
16 " Wrap text after 78 characters.
17 set textwidth=78
18
19 " Set tabs to 4 spaces, use softtabs.
20 set shiftwidth=4
21 set softtabstop=4
22 set expandtab
23 " When < and > is used indent/deindent to the next shiftwidth boundary.
24 set shiftround
25 " Use the default value for real tabs.
26 set tabstop=8
27
28 " Enable auto indention.
29 set autoindent
30
31 " When joining lines only add one space after a sentence.
32 set nojoinspaces
33
34 " Allow backspacing over autoindent and line breaks.
35 set backspace=indent,eol
36
37 " Start a comment when hitting enter after a commented line (r) and when using
38 " o or O around a commented line (o).
39 set formatoptions+=ro
40 " Don't break a line if was already longer then 'textwidth' when insert mode
41 " started.
42 set formatoptions+=l
43
44 " Allow virtual editing (cursor can be positioned anywhere, even when there is
45 " no character) in visual block mode.
46 set virtualedit=block
47
48 " Already display matches while typing the search command. This makes spotting
49 " errors easily.
50 set incsearch
51
52 " Activate syntax folding.
53 set foldmethod=syntax
54 set foldcolumn=2
55 set foldlevel=99 " no folding at default
56
57 " Only check for case if the searched word contains a capital character.
58 set ignorecase
59 set smartcase
60
61 " Activate spell checking, use English as default.
62 if v:version >= 700
63     set spell
64     set spelllang=en_us
65 endif
66
67
68 " DISPLAY SETTINGS
69
70 " Use a dark background.
71 set background=dark
72
73 " Activate lines display.
74 set number
75 " Display the ruler with current line/file position.
76 set ruler
77 " Display partial commands in the status line.
78 set showcmd
79
80 " Visualize the line the cursor is currently in.
81 if v:version >= 700
82     set cursorline
83 endif
84
85 " Display tabs as "^I" and trailing space as "-".
86 set list
87 set listchars=trail:-
88
89
90 " EDITOR SETTINGS
91
92 " Don't use any modelines.
93 set nomodeline
94
95 " When completing paths first use the longest path then display a list of all
96 " possible files.
97 set wildmode=longest,list
98
99 " Increase number of tabs which can be opened with the -p option.
100 if v:version >= 700
101     set tabpagemax=50
102 endif
103
104
105 " MAPPINGS (except for plugins, see PLUGIN SETTINGS below)
106
107 " Use "," as my mapleader.
108 let mapleader = ","
109 let maplocalleader = ","
110
111 " Use <space> to move down a page and - to move up one like in mutt.
112 nnoremap <Space> <C-f>
113 nnoremap - <C-b>
114
115 " Maps to change spell language between English and German.
116 map <Leader>se :set spelllang=en_us<CR>
117 map <Leader>sd :set spelllang=de_de<CR>
118
119 " I often type "W" instead of "w" when trying to save a file. Fix my mistake.
120 " Thanks to Tony Mechelynck <antoine.mechelynck@gmail.com> from the Vim
121 " mailing list for the commands.
122 if v:version < 700
123     cnoreabbrev W w
124     cnoreabbrev Wq wq
125 else
126     cnoreabbrev <expr> W
127         \ ((getcmdtype() == ':' && getcmdpos() <= 2) ? 'w' : 'W')
128     cnoreabbrev <expr> Wq
129         \ ((getcmdtype() == ':' && getcmdpos() <= 3) ? 'wq' : 'Wq')
130 endif
131 " Also fix my typo with "Q".
132 if v:version < 700
133     cnoreabbrev Q q
134 else
135     cnoreabbrev <expr> Q
136         \ ((getcmdtype() == ':' && getcmdpos() <= 2) ? 'q' : 'Q')
137 endif
138
139 " Disable Apple style movements in MacVim.
140 if has("gui_macvim")
141     let macvim_skip_cmd_opt_movement = 1
142 endif
143
144
145 " SYNTAX SETTINGS
146
147 " Activate syntax coloring.
148 syntax enable
149
150
151 " PLUGIN SETTINGS
152
153 " Settings for the NERD commenter.
154 " Don't create any mappings I don't want to use.
155 let NERDCreateDefaultMappings = 0
156 " Map toggle comment.
157 map <Leader><Leader> <plug>NERDCommenterToggle
158
159
160 " Automatically save and the load the file state (stored in ~/.vim/view).
161 autocmd BufWrite * mkview
162 autocmd BufRead  * loadview