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 058a66b..2214e7b 100644
--- a/vimrc
+++ b/vimrc
@@ -4,9 +4,10 @@ set packpath+=pack/vim
4 4
5 5
6set ttymouse=xterm2 6set ttymouse=xterm2
7set term=xterm-256color " usually a good choice, install ncurses and use `toe` to see all available choices
8set ttybuiltin | " use internal termcaps, because these are more stable
7set ttyscroll=100 | " improves speed for terminal vim, incompatible with nvim 9set ttyscroll=100 | " improves speed for terminal vim, incompatible with nvim
8set ttyfast | " improves speed for terminal vim (incompatible with nvim) 10set ttyfast | " improves speed for terminal vim (incompatible with nvim)
9set nottybuiltin | " use external termcaps
10set restorescreen | " restores the console after exiting vim (intentionally not in nvim) 11set restorescreen | " restores the console after exiting vim (intentionally not in nvim)
11 12
12" autocmd VimLeave * call system("echo -n $'" . escape(getreg(), "'") . "' | xsel -ib") 13" autocmd VimLeave * call system("echo -n $'" . escape(getreg(), "'") . "' | xsel -ib")
..