[vim] align options on tab stop for convenience
No options were changed -> only formatting!
This commit is contained in:
parent
573f7ba5f5
commit
344bffe19b
1 changed files with 46 additions and 46 deletions
92
vim/vimrc
92
vim/vimrc
|
@ -1,52 +1,52 @@
|
||||||
set nocompatible
|
set nocompatible
|
||||||
|
|
||||||
" Options {{{
|
" Options {{{
|
||||||
set autoindent
|
set autoindent
|
||||||
set autoread
|
set autoread
|
||||||
let &background = $BACKGROUND ==# 'light' ? 'light' : 'dark'
|
let &background = $BACKGROUND ==# 'light' ? 'light' : 'dark'
|
||||||
set backspace=indent,eol,start
|
set backspace=indent,eol,start
|
||||||
set nobackup
|
set nobackup
|
||||||
set clipboard=unnamed
|
set clipboard=unnamed
|
||||||
set colorcolumn=80
|
set colorcolumn=80
|
||||||
set cursorline
|
set cursorline
|
||||||
set encoding=utf8
|
set encoding=utf8
|
||||||
set expandtab
|
set expandtab
|
||||||
set foldenable
|
set foldenable
|
||||||
set foldlevelstart=100
|
set foldlevelstart=100
|
||||||
set foldmethod=syntax
|
set foldmethod=syntax
|
||||||
set foldnestmax=10
|
set foldnestmax=10
|
||||||
set formatoptions-=t
|
set formatoptions-=t
|
||||||
set hidden
|
set hidden
|
||||||
set history=1000
|
set history=1000
|
||||||
set hlsearch
|
set hlsearch
|
||||||
set incsearch
|
set incsearch
|
||||||
set laststatus=2
|
set laststatus=2
|
||||||
set lazyredraw
|
set lazyredraw
|
||||||
set listchars=tab:›\ ,trail:·
|
set listchars=tab:›\ ,trail:·
|
||||||
set modelines=0
|
set modelines=0
|
||||||
set number
|
set number
|
||||||
set scrolloff=5
|
set scrolloff=5
|
||||||
set shiftwidth=4
|
set shiftwidth=4
|
||||||
let &showbreak = '↪ '
|
let &showbreak = '↪ '
|
||||||
set showmatch
|
set showmatch
|
||||||
set noshowmode
|
set noshowmode
|
||||||
set sidescrolloff=5
|
set sidescrolloff=5
|
||||||
set nrformats-=octal
|
set nrformats-=octal
|
||||||
set smartindent
|
set smartindent
|
||||||
set smarttab
|
set smarttab
|
||||||
set splitbelow
|
set splitbelow
|
||||||
set splitright
|
set splitright
|
||||||
set noswapfile
|
set noswapfile
|
||||||
set tabstop=4
|
set tabstop=4
|
||||||
set textwidth=79
|
set textwidth=79
|
||||||
set timeoutlen=1000
|
set timeoutlen=1000
|
||||||
set ttimeoutlen=100
|
set ttimeoutlen=100
|
||||||
set ttyfast
|
set ttyfast
|
||||||
set viminfofile=~/.vim/viminfo
|
set viminfofile=~/.vim/viminfo
|
||||||
set wildignore=*.o,*.obj,*.pyc,*.exe,*.so,*.dll
|
set wildignore=*.o,*.obj,*.pyc,*.exe,*.so,*.dll
|
||||||
set wildmenu
|
set wildmenu
|
||||||
set wrap
|
set wrap
|
||||||
set writebackup
|
set writebackup
|
||||||
" }}}
|
" }}}
|
||||||
|
|
||||||
" Plugins {{{
|
" Plugins {{{
|
||||||
|
|
Loading…
Add table
Reference in a new issue