aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--doc/screen.txt9
-rw-r--r--vimrc-minimal16
2 files changed, 25 insertions, 0 deletions
diff --git a/doc/screen.txt b/doc/screen.txt
new file mode 100644
index 0000000..5c375d2
--- /dev/null
+++ b/doc/screen.txt
@@ -0,0 +1,9 @@
1To run vim inside a screen session:
2
3TERM=vte-256color screen vim
4
5works very well. But if you are using another terminal you may be interested in
6other possibilities, like this:
7
8find /usr/share/terminfo/ | grep screen | grep 256
9
diff --git a/vimrc-minimal b/vimrc-minimal
new file mode 100644
index 0000000..96924f0
--- /dev/null
+++ b/vimrc-minimal
@@ -0,0 +1,16 @@
1set nocompatible
2
3
4filetype plugin indent on
5
6set omnifunc=syntaxcomplete#Complete
7
8syntax on
9
10
11set ts=2 sw=2 expandtab
12
13set ignorecase smartcase
14
15set hidden
16
..