This commit is contained in:
a 2024-12-13 14:20:08 +01:00
parent 2e1c156f83
commit 9bc7724a93

18
.vimrc Normal file
View file

@ -0,0 +1,18 @@
set relativenumber
set tabstop=4
syntax on
noremap <Up> <Nop>
noremap <Down> <Nop>
noremap <Left> <Nop>
noremap <Right> <Nop>
noremap <silent><S-j> :tabprevious<cr>
noremap <silent><S-k> :tabnext<cr>
noremap <silent><S-n> :tabnew<cr>
noremap <silent><S-w> :tabclose<cr>
vmap <C-y> :!xclip -f -sel clip<CR>
map <C-p> :-1r !xclip -o -sel clip<CR>
autocmd BufNewFile *.html 0r ~/.vimTemplates/skel.html