diff options
author | Max Christian Pohle | 2017-03-21 13:24:32 +0100 |
---|---|---|
committer | Max Christian Pohle | 2017-03-21 13:24:32 +0100 |
commit | ee79380632f656c3ddc3e71a8272385e5fd61ee1 (patch) | |
tree | 9561e5042383a424e90c7f7df774dc781a9c22b9 | |
parent | 291d8a994f70423805bdefb5ecfe4f7d73f80922 (diff) | |
parent | d94b51cb37571f1dea71e1def66a93807a57469e (diff) | |
download | vim-ee79380632f656c3ddc3e71a8272385e5fd61ee1.tar.bz2 vim-ee79380632f656c3ddc3e71a8272385e5fd61ee1.zip |
Merge branch 'master' of http://git.entwicklerseite.de/vim
-rw-r--r-- | doc/screen.txt | 9 | ||||
-rw-r--r-- | vimrc-minimal | 16 |
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 @@ | |||
1 | To run vim inside a screen session: | ||
2 | |||
3 | TERM=vte-256color screen vim | ||
4 | |||
5 | works very well. But if you are using another terminal you may be interested in | ||
6 | other possibilities, like this: | ||
7 | |||
8 | find /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 @@ | |||
1 | set nocompatible | ||
2 | |||
3 | |||
4 | filetype plugin indent on | ||
5 | |||
6 | set omnifunc=syntaxcomplete#Complete | ||
7 | |||
8 | syntax on | ||
9 | |||
10 | |||
11 | set ts=2 sw=2 expandtab | ||
12 | |||
13 | set ignorecase smartcase | ||
14 | |||
15 | set hidden | ||
16 | |||