This commit is contained in:
Spirit 2023-11-13 01:57:20 +03:00 committed by GitHub
parent 1960971993
commit b2c97e0dcf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

16
.vimrc Normal file
View File

@ -0,0 +1,16 @@
set nu
set ruler
set laststatus=2
filetype plugin indent on
if has("syntax")
syntax on
endif
map <C-n> :set invnumber<CR>
nnoremap <leader>f gg=G
nnoremap J :m .+1<CR>==
vnoremap J :m '>+1<CR>gv=gv
nnoremap K :m .-2<CR>==
vnoremap K :m '<-2<CR>gv=gv