]> git.phdru.name Git - dotfiles.git/blobdiff - .vimrc
Feat(bash-prompt): Remove `[]`
[dotfiles.git] / .vimrc
diff --git a/.vimrc b/.vimrc
index bb817148862ed8593ef8a5d03979cca28546fa0d..19b63289e72cb20ea35bebd0771015fc71ac503c 100644 (file)
--- a/.vimrc
+++ b/.vimrc
@@ -91,7 +91,7 @@ set titleold=     " string to restore the title to when exiting Vim
 " 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}
+set titlestring=%t%(\ %M%)%(\ (%{substitute(expand(\"%:p:h\"),\ $HOME,\ \"~\",\ \"\")})%)%(\ %a%)\ -\ %{v:progname}\ [%{$USER}@%{hostname()}]
 
 " 9 using the mouse
 
@@ -314,26 +314,7 @@ else
       endif
    endif
 
-   " Bracketed paste mode
-   " https://github.com/ConradIrwin/vim-bracketed-paste/blob/master/plugin/bracketed-paste.vim
-   let &t_ti .= "\<Esc>[?2004h"
-   let &t_te = "\e[?2004l" . &t_te
-
-   function! XTermPasteBegin(ret)
-     set pastetoggle=<f29>
-     set paste
-     return a:ret
-   endfunction
-
-   execute "set <f28>=\<Esc>[200~"
-   execute "set <f29>=\<Esc>[201~"
-   map <expr> <f28> XTermPasteBegin("i")
-   imap <expr> <f28> XTermPasteBegin("")
-   vmap <expr> <f28> XTermPasteBegin("c")
-   cmap <f28> <nop>
-   cmap <f29> <nop>
-
-   "https://coderwall.com/p/if9mda/automatically-set-paste-mode-in-vim-when-pasting-in-insert-mode
+   " https://coderwall.com/p/if9mda/automatically-set-paste-mode-in-vim-when-pasting-in-insert-mode
    " https://ttssh2.osdn.jp/manual/en/usage/tips/vim.html
    function! WrapForScreenTmux(s)
       if (&term =~ "screen")