This commit is contained in:
2023-12-17 22:34:49 +01:00
commit cea104b699
3 changed files with 52 additions and 0 deletions

11
vimrc Normal file
View File

@@ -0,0 +1,11 @@
set autoindent expandtab tabstop=4 shiftwidth=4
set hidden
nnoremap <C-S> :w<cr>
nnoremap <C-l> :bn<cr>
nnoremap <C-h> :bp<cr>
inoremap <C-S> <esc>:w<cr>i
let mapleader=" "
nnoremap <leader>w :w<cr>:bw<cr>
nnoremap <leader>v :e ~/.vimrc<cr>
nnoremap <leader>s :source ~/.vimrc<cr>
nnoremap <leader>q :xa<cr>