commit 769b064718b10fc8c21e4dc5c133d38a7d635f7e from: Aleksey Ryndin date: Wed Jan 25 16:55:11 2023 UTC Initial commit commit - /dev/null commit + 769b064718b10fc8c21e4dc5c133d38a7d635f7e blob - /dev/null blob + 4286263b49fa5fedabe61f730c48e3103cedc2e0 (mode 644) --- /dev/null +++ .vimrc @@ -0,0 +1,41 @@ +set mouse-=a + +set belloff=all + +set title +set ruler + +syntax on + +set tabstop=4 +set shiftwidth=4 +set softtabstop=4 +set expandtab +set autoindent +inoremap + +set hlsearch +set incsearch + +nnoremap e :e =expand('%:p:h') . '/' + +set backspace=indent,eol,start + +autocmd FileType python compiler pylint +autocmd FileType python set nu + +autocmd FileType rust set nu + +autocmd FileType json set tabstop=2 +autocmd FileType json set shiftwidth=2 +autocmd FileType json set softtabstop=2 + +autocmd FileType yaml set tabstop=2 +autocmd FileType yaml set shiftwidth=2 +autocmd FileType yaml set softtabstop=2 + +autocmd FileType html set tabstop=2 +autocmd FileType html set shiftwidth=2 +autocmd FileType html set softtabstop=2 + +autocmd FileType make set noexpandtab \ No newline at end of file