]> git.phdru.name Git - dotfiles.git/commitdiff
.vimrc: Add default `statusline` and `titlestring`
authorOleg Broytman <phd@phdru.name>
Sun, 14 Jun 2020 15:21:08 +0000 (18:21 +0300)
committerOleg Broytman <phd@phdru.name>
Sun, 14 Jun 2020 15:21:08 +0000 (18:21 +0300)
.vimrc

diff --git a/.vimrc b/.vimrc
index 83458ed39c76bae0a98b6eddf257d497e61ee052..bb817148862ed8593ef8a5d03979cca28546fa0d 100644 (file)
--- a/.vimrc
+++ b/.vimrc
@@ -74,6 +74,7 @@ set nohlsearch    " Stop the search highlighting
 
 set hidden        " Don't unload a buffer when no longer shown in a window; allow to switch between buffers/windows when the buffer is modified
 set laststatus=2  " Always show status line
+" set statusline=%<%f\ %h%m%r%=%-14.(%l,%c%V%)\ %P " Default statusline
 
 set splitbelow    " A new window is put below of the current one
 set splitright    " A new window is put right of the current one
@@ -84,7 +85,10 @@ set ttyfast       " terminal connection is fast
 
 set title         " Set title to the value of 'titlestring' or to 'filename - VIM'
 set titleold=     " string to restore the title to when exiting Vim
-" String to use for the Vim window title; with statusline printf items:
+" String to use for the Vim window title; with statusline printf items.
+" This is the default:
+" display filename, modification flag, full path, and program name in uppercase.
+" set titlestring=%t%(\ %M%)%(\ (%{substitute(expand(\"%:p:h\"),\ $HOME,\ \"~\",\ \"\")})%)%(\ %a%)\ -\ %{toupper(v:progname)}
 " display filename, modification flag, full path, argument list status,
 " the current user, host and program name (to distinguish vim/view/etc).
 set titlestring=%t%(\ %M%)%(\ (%{expand(\"%:p:h\")})%)%(\ %a%)\ -\ [%{$USER}@%{hostname()}]\ %{v:progname}