aboutsummaryrefslogtreecommitdiff
path: root/vimrc
diff options
context:
space:
mode:
Diffstat (limited to 'vimrc')
-rw-r--r--vimrc3
1 files changed, 2 insertions, 1 deletions
diff --git a/vimrc b/vimrc
index 3c6b53a..86ff057 100644
--- a/vimrc
+++ b/vimrc
@@ -2,9 +2,10 @@ exec ':source '.fnamemodify($MYVIMRC,':h').'/'.'vimrc-common'
2set packpath+=pack/vim 2set packpath+=pack/vim
3 3
4set ttymouse=xterm2 4set ttymouse=xterm2
5set term=xterm-256color " usually a good choice, install ncurses and use `toe` to see all available choices
6set ttybuiltin | " use internal termcaps, because these are more stable
5set ttyscroll=100 | " improves speed for terminal vim, incompatible with nvim 7set ttyscroll=100 | " improves speed for terminal vim, incompatible with nvim
6set ttyfast | " improves speed for terminal vim (incompatible with nvim) 8set ttyfast | " improves speed for terminal vim (incompatible with nvim)
7set nottybuiltin | " use external termcaps
8set restorescreen | " restores the console after exiting vim (intentionally not in nvim) 9set restorescreen | " restores the console after exiting vim (intentionally not in nvim)
9 10
10" autocmd VimLeave * call system("echo -n $'" . escape(getreg(), "'") . "' | xsel -ib") 11" autocmd VimLeave * call system("echo -n $'" . escape(getreg(), "'") . "' | xsel -ib")
..