changed trailing in vimrc

This commit is contained in:
Marco Thomas
2019-11-26 16:35:46 +01:00
parent c75457917d
commit e55baade89
2 changed files with 6 additions and 4 deletions

View File

@@ -1,5 +1,6 @@
[alias] [alias]
a = add a = add
aa = add .
c = commit c = commit
co = checkout co = checkout
d = diff d = diff

View File

@@ -21,7 +21,8 @@ set mat=5
" General " General
set noswapfile set noswapfile
set confirm "cant quit wo saving set confirm "cant quit wo saving
set showmode " shows editing mode set showmode " shows editing mode in status
set showcmd " shows commands in status
set encoding=utf-8 set encoding=utf-8
set mouse=a set mouse=a
set mouse=c set mouse=c
@@ -37,8 +38,8 @@ set smartindent
" Whitespaces " Whitespaces
set list set list
hi SpecialKey ctermbg=White "hi SpecialKey ctermbg=Darkgray " colored tabs
set listchars=tab:\ \ ,trail:\ set list listchars=tab:>-,trail:\\
" Search " Search
set incsearch set incsearch
@@ -56,7 +57,7 @@ cmap q1 q!
" go to line edited, when closed " go to line edited, when closed
if has("autocmd") if has("autocmd")
au BufReadPost * if line("'\"") > 0 && line("'\"") <= line("$") au BufReadPost * if line("'\"") > 0 && line("'\"") <= line("$")
\| exe "normal! g'\"" | endif \| exe "normal! g'\"" | endif
endif endif
" no clue " no clue