dotfiles/.vimrc
ramazanemreosmanoglu df8f3ef1c1 First Commit
2022-09-20 10:32:03 +03:00

23 lines
257 B
VimL

syntax on
set tabstop=4
set softtabstop=4
set expandtab
set autoindent
set smartindent
set copyindent
set smarttab
set ai
set si
set wrap
set number
if has('mouse')
set mouse=a
endif
vnoremap <C-c> "+y
command W w
command WQ wq
command Q q
set wildmenu