Compare commits
6
Commits
master
...
32aa03aee3
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
32aa03aee3 | ||
|
|
ef4ffbb82a | ||
|
|
8ae8f548e6 | ||
|
|
4d455f4254 | ||
|
|
86468f80fc | ||
|
|
d8b85232cf |
@@ -8,7 +8,6 @@ Plug 'vim-airline/vim-airline'
|
|||||||
Plug 'vim-airline/vim-airline-themes'
|
Plug 'vim-airline/vim-airline-themes'
|
||||||
Plug 'scrooloose/nerdcommenter'
|
Plug 'scrooloose/nerdcommenter'
|
||||||
Plug 'javier-lopez/sprunge.vim'
|
Plug 'javier-lopez/sprunge.vim'
|
||||||
Plug 'vim-scripts/Trailer-Trash'
|
|
||||||
Plug 'vim-scripts/bad-whitespace'
|
Plug 'vim-scripts/bad-whitespace'
|
||||||
Plug 'junegunn/fzf', { 'do': { -> fzf#install() } }
|
Plug 'junegunn/fzf', { 'do': { -> fzf#install() } }
|
||||||
Plug 'junegunn/fzf.vim'
|
Plug 'junegunn/fzf.vim'
|
||||||
@@ -29,10 +28,10 @@ filetype plugin on
|
|||||||
|
|
||||||
""" General
|
""" General
|
||||||
" indentation
|
" indentation
|
||||||
set tabstop=4 " tabs only count for 4 spaces
|
set tabstop=2 " tabs only count for 4 spaces
|
||||||
set shiftwidth=4 " when indenting use 4 spaces
|
set shiftwidth=2 " when indenting use 4 spaces
|
||||||
set noexpandtab " use tab characters
|
set expandtab " don't use tab characters
|
||||||
set autoindent
|
"set autoindent
|
||||||
|
|
||||||
" view
|
" view
|
||||||
set number
|
set number
|
||||||
@@ -42,7 +41,8 @@ set hlsearch " highlight found matches
|
|||||||
set incsearch nohlsearch " turn off hightlight after search
|
set incsearch nohlsearch " turn off hightlight after search
|
||||||
set wrap
|
set wrap
|
||||||
set linebreak
|
set linebreak
|
||||||
set nolist " disable line break on wrap
|
set list " disable line break on wrap
|
||||||
|
set lcs=tab:»-,trail:·,leadmultispace:·,nbsp:·
|
||||||
|
|
||||||
" folding
|
" folding
|
||||||
set foldmethod=syntax
|
set foldmethod=syntax
|
||||||
@@ -156,7 +156,7 @@ let g:airline#extensions#whitespace#mixed_indent_algo = 2
|
|||||||
let g:airline#extensions#whitespace#checks = [ 'indent', 'long']
|
let g:airline#extensions#whitespace#checks = [ 'indent', 'long']
|
||||||
|
|
||||||
" vim-licenser
|
" vim-licenser
|
||||||
let g:licenser_author = 'Nicolás A. Ortega <nicolas@ortegas.org>'
|
let g:licenser_author = 'Nicolás A. Ortega <nicolas.ortega@skudonet.com>'
|
||||||
|
|
||||||
" FZF
|
" FZF
|
||||||
nnoremap <leader>f :Files<CR>
|
nnoremap <leader>f :Files<CR>
|
||||||
|
|||||||
Reference in New Issue
Block a user