1
0
mirror of https://github.com/pgrondek/config.git synced 2024-11-22 12:03:43 +00:00
config/vim/vimrc
2019-09-18 11:09:26 +02:00

32 lines
571 B
VimL

"colorscheme badwolf
" Indent
set autoindent
set softtabstop=4
set tabstop=4
set expandtab
" Search
set incsearch
set hlsearch
set ignorecase
" Tabs
:au BufAdd,BufNewFile,BufRead * nested tab sball
set splitbelow
set splitright
set laststatus=2 " Always show a status bar
set scrolloff=3 " Keep n lines when scrolling
set showcmd " show command in bar
set number " show line numbers
set wildmenu " visual autocomplete for command menu
set tabpagemax=10
function Xsudo()
:w !sudo tee %
:q!
endfunction
command Wsudo :w !sudo tee %
command Xsudo exec Xsudo()