Blob


1 set mouse-=a
3 set belloff=all
5 set title
6 set ruler
8 syntax on
10 set tabstop=4
11 set shiftwidth=4
12 set softtabstop=4
13 set expandtab
14 set autoindent
15 inoremap <S-Tab> <C-d>
17 set hlsearch
18 set incsearch
20 nnoremap <Leader>e :e <C-R>=expand('%:p:h') . '/'<CR>
22 set backspace=indent,eol,start
24 autocmd FileType python compiler pylint
25 autocmd FileType python set nu
27 autocmd FileType rust set nu
29 autocmd FileType json set tabstop=2
30 autocmd FileType json set shiftwidth=2
31 autocmd FileType json set softtabstop=2
33 autocmd FileType yaml set tabstop=2
34 autocmd FileType yaml set shiftwidth=2
35 autocmd FileType yaml set softtabstop=2
37 autocmd FileType html set tabstop=2
38 autocmd FileType html set shiftwidth=2
39 autocmd FileType html set softtabstop=2
41 autocmd FileType make set noexpandtab
42 autocmd FileType make set tabstop=8
43 autocmd FileType make set shiftwidth=8
44 autocmd FileType make set softtabstop=8