aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--doc/readme.md11
-rw-r--r--vimrc3
2 files changed, 11 insertions, 3 deletions
diff --git a/doc/readme.md b/doc/readme.md
index 68bd20b..5ea6da4 100644
--- a/doc/readme.md
+++ b/doc/readme.md
@@ -1,8 +1,15 @@
1<h1>vim configuration</h1> 1vim configuration
2=================
3
2This is the configuration I am using. 4This is the configuration I am using.
3 5
4 6
5<h2>Screenshot</h2> 7Screenshot
8----------
9
6<a href="/vim/plain/doc/coderonline-vim.png"> 10<a href="/vim/plain/doc/coderonline-vim.png">
7 <img src="/vim/plain/doc/coderonline-vim.png" width="720" alt="screenshot of vim" /> 11 <img src="/vim/plain/doc/coderonline-vim.png" width="720" alt="screenshot of vim" />
8</a> 12</a>
13
14
15
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")
..