diff options
Diffstat (limited to 'doc')
-rw-r--r-- | doc/INSTALL | 46 | ||||
-rw-r--r-- | doc/UPDATE | 4 | ||||
-rw-r--r-- | doc/gitignore | 50 |
3 files changed, 0 insertions, 100 deletions
diff --git a/doc/INSTALL b/doc/INSTALL deleted file mode 100644 index 9cab2dd..0000000 --- a/doc/INSTALL +++ /dev/null | |||
@@ -1,46 +0,0 @@ | |||
1 | # INSTALL | ||
2 | # this should briefly show you how to install this bundle | ||
3 | |||
4 | |||
5 | # [required steps] | ||
6 | |||
7 | # Download the current version using git (probably you already have!) | ||
8 | git clone http://git.entwicklerseite.de/vim ~/.vim | ||
9 | |||
10 | # Get the required submodule(s) | ||
11 | git submodule update --init --recursive | ||
12 | |||
13 | # start vim for the first time and use the plugin manager to install required plugins | ||
14 | vim -c ":PlugInstall" | ||
15 | |||
16 | # build YouCompleteMe | ||
17 | cd ~/.vim/plugged/YouCompleteMe | ||
18 | python ./install.py --clang-completer | ||
19 | |||
20 | |||
21 | |||
22 | |||
23 | # [optional steps] | ||
24 | # create a symbolic link to the downloaded vim.rc in you $HOME-directory | ||
25 | ln -s ~/.vim/vimrc ~/.vimrc | ||
26 | |||
27 | # gvim: make menu bar more fancy | ||
28 | ln -s ~/.vim/gtk-3.0.css ~/.config/gtk-3.0/gtk.css | ||
29 | |||
30 | # if you do not have working gvim start menu entries, try: | ||
31 | ln -s ~/.vim/gvim-tab.desktop ~/.local/share/applications/ | ||
32 | update-desktop-database ~/.local/share/applications/ | ||
33 | |||
34 | # Thunar file manager specific: create an entry in the sendto menu... | ||
35 | mkdir -p ~/.local/share/Thunar/sendto/ | ||
36 | ln -s ~/.vim/gvim-tab.desktop ~/.local/share/Thunar/sendto/ | ||
37 | |||
38 | |||
39 | |||
40 | # [random/unfinished stuff] | ||
41 | # download plugins and spell file for your language | ||
42 | # vim -c ":set spell" | ||
43 | # vim +set\ spell # < maybe that works as well | ||
44 | # :call spellfile#LoadFile(expand("de")) | ||
45 | |||
46 | # vim: noai:ts=2:sw=2 filetype=csh nolist | ||
diff --git a/doc/UPDATE b/doc/UPDATE deleted file mode 100644 index 6321b85..0000000 --- a/doc/UPDATE +++ /dev/null | |||
@@ -1,4 +0,0 @@ | |||
1 | git submodule -q foreach git pull -q origin master | ||
2 | |||
3 | In Vim: | ||
4 | :VundleUpdate | ||
diff --git a/doc/gitignore b/doc/gitignore deleted file mode 100644 index 1d8dd28..0000000 --- a/doc/gitignore +++ /dev/null | |||
@@ -1,50 +0,0 @@ | |||
1 | # Byte-compiled / optimized / DLL files | ||
2 | __pycache__/ | ||
3 | *.py[cod] | ||
4 | |||
5 | # C extensions | ||
6 | *.so | ||
7 | |||
8 | # Distribution / packaging | ||
9 | bin/ | ||
10 | build/ | ||
11 | develop-eggs/ | ||
12 | dist/ | ||
13 | eggs/ | ||
14 | lib/ | ||
15 | lib64/ | ||
16 | parts/ | ||
17 | sdist/ | ||
18 | var/ | ||
19 | *.egg-info/ | ||
20 | .installed.cfg | ||
21 | *.egg | ||
22 | |||
23 | # Installer logs | ||
24 | pip-log.txt | ||
25 | pip-delete-this-directory.txt | ||
26 | |||
27 | # Unit test / coverage reports | ||
28 | .tox/ | ||
29 | .coverage | ||
30 | .cache | ||
31 | nosetests.xml | ||
32 | coverage.xml | ||
33 | |||
34 | # Translations | ||
35 | *.mo | ||
36 | |||
37 | # Mr Developer | ||
38 | .mr.developer.cfg | ||
39 | .project | ||
40 | .pydevproject | ||
41 | |||
42 | # Rope | ||
43 | .ropeproject | ||
44 | |||
45 | # Django stuff: | ||
46 | *.log | ||
47 | *.pot | ||
48 | |||
49 | # Sphinx documentation | ||
50 | docs/_build/ | ||