15 inoremap <S-Tab> <C-d>
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