1
0
mirror of https://github.com/pgrondek/config.git synced 2024-11-22 20:13:43 +00:00
config/vimrc

24 lines
457 B
VimL
Raw Normal View History

2019-04-04 16:43:29 +00:00
"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
2019-04-07 09:22:35 +00:00
set splitbelow
set splitright
2019-04-04 16:43:29 +00:00
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