1
0
mirror of https://github.com/dcarrillo/dotfiles.git synced 2024-07-03 12:20:27 +00:00
dotfiles/.vimrc

15 lines
252 B
VimL

" Allow saving of files as sudo when I forgot to start vim using sudo.
cmap w!! w !sudo tee > /dev/null %
syntax on
" Use four spaces for indentation
set tabstop=4
set shiftwidth=4
set expandtab
" Disable visual mode
set mouse-=a
let mapleader=","