From e55baade898fc578db7357a3a6e0a6e26880ba63 Mon Sep 17 00:00:00 2001 From: Marco Thomas Date: Tue, 26 Nov 2019 16:35:46 +0100 Subject: [PATCH] changed trailing in vimrc --- dotfiles/gitconfig | 1 + dotfiles/vimrc | 9 +++++---- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/dotfiles/gitconfig b/dotfiles/gitconfig index b3427a1..cac984e 100644 --- a/dotfiles/gitconfig +++ b/dotfiles/gitconfig @@ -1,5 +1,6 @@ [alias] a = add + aa = add . c = commit co = checkout d = diff diff --git a/dotfiles/vimrc b/dotfiles/vimrc index e678ea3..d73d95a 100644 --- a/dotfiles/vimrc +++ b/dotfiles/vimrc @@ -21,7 +21,8 @@ set mat=5 " General set noswapfile 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 mouse=a set mouse=c @@ -37,8 +38,8 @@ set smartindent " Whitespaces set list -hi SpecialKey ctermbg=White -set listchars=tab:\ \ ,trail:\ +"hi SpecialKey ctermbg=Darkgray " colored tabs +set list listchars=tab:>-,trail:\\ " Search set incsearch @@ -56,7 +57,7 @@ cmap q1 q! " go to line edited, when closed if has("autocmd") au BufReadPost * if line("'\"") > 0 && line("'\"") <= line("$") - \| exe "normal! g'\"" | endif + \| exe "normal! g'\"" | endif endif " no clue