mirror of
https://github.com/pgrondek/config.git
synced 2024-11-22 20:13:43 +00:00
24 lines
457 B
VimL
24 lines
457 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
|