configs/vim2/.vimrc

24 lines
449 B
VimL
Raw Normal View History

2025-03-04 22:49:50 +13:00
set tabstop=4 expandtab
set shiftwidth=4
set softtabstop=4
set autoindent
set cindent
set mouse=a
set number
set relativenumber
syntax on
colorscheme habamax
filetype plugin on
call plug#begin()
Plug 'tpope/vim-sensible'
Plug 'sheerun/vim-polyglot'
Plug 'joe-skb7/cscope-maps'
Plug 'vimsence/vimsence'
call plug#end()
nnoremap gd :cscope find g <C-R><C-W><CR>
nnoremap gf :cscope find f <C-R><C-W><CR>
vnoremap <silent> <C-c> :w !wl-copy<CR><CR>