Added invisibles to VIM
This commit is contained in:
@ -1,14 +1,21 @@
|
|||||||
" General
|
" Line Numbers
|
||||||
set number
|
set number
|
||||||
|
|
||||||
|
" Invisibles
|
||||||
set linebreak
|
set linebreak
|
||||||
set showbreak=+++
|
set showbreak=+++
|
||||||
set textwidth=80
|
set list
|
||||||
|
:set listchars=tab:→\ ,space:·,nbsp:␣,trail:•,eol:¶,precedes:«,extends:»
|
||||||
|
|
||||||
|
" Search
|
||||||
set showmatch
|
set showmatch
|
||||||
set visualbell
|
set visualbell
|
||||||
set hlsearch
|
set hlsearch
|
||||||
set smartcase
|
set smartcase
|
||||||
set ignorecase
|
set ignorecase
|
||||||
set incsearch
|
set incsearch
|
||||||
|
|
||||||
|
" Tabs
|
||||||
set autoindent
|
set autoindent
|
||||||
set shiftwidth=2
|
set shiftwidth=2
|
||||||
set smartindent
|
set smartindent
|
||||||
@ -17,7 +24,9 @@ set softtabstop=2
|
|||||||
set et
|
set et
|
||||||
%retab!
|
%retab!
|
||||||
|
|
||||||
|
" Ruler
|
||||||
set ruler
|
set ruler
|
||||||
|
set textwidth=80
|
||||||
set undolevels=1000
|
set undolevels=1000
|
||||||
set backspace=indent,eol,start
|
set backspace=indent,eol,start
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user