aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Christian Pohle2015-09-07 02:02:22 +0200
committerMax Christian Pohle2015-09-07 02:02:22 +0200
commit81a481d42b50dfdf275989a7812f46b854672c40 (patch)
treeb97cd4201c68722243aec9ee96e521e9a84bb979
parent6b07aa894241e2bdf805ea5e0f7dc9c08be5f711 (diff)
downloadvim-81a481d42b50dfdf275989a7812f46b854672c40.tar.bz2
vim-81a481d42b50dfdf275989a7812f46b854672c40.zip
renamed colorscheme, included INSTALL instructions
-rw-r--r--.gitignore2
-rw-r--r--colors/coderonline.vim (renamed from colors/maxvb6.vim)8
-rw-r--r--doc/INSTALL23
-rw-r--r--doc/shortcuts.txt2
-rw-r--r--vimrc2
5 files changed, 32 insertions, 5 deletions
diff --git a/.gitignore b/.gitignore
index fbde122..e5a224b 100644
--- a/.gitignore
+++ b/.gitignore
@@ -2,3 +2,5 @@
2!temp/.keep 2!temp/.keep
3/intent/** 3/intent/**
4!indent/.keep 4!indent/.keep
5/spell/**
6!spell/.keep
diff --git a/colors/maxvb6.vim b/colors/coderonline.vim
index eb3ddaa..eb8baa6 100644
--- a/colors/maxvb6.vim
+++ b/colors/coderonline.vim
@@ -1,14 +1,14 @@
1" color theme for vim 1" color theme for vim
2" Maintainer: Max Christian Pohle <max@entwicklerseite.de> 2" Maintainer: Max Christian Pohle <max@coderonline.de>
3" Last Change: 11.09.2014 3" Last Change: 07.09.2015
4" Web: http://max.entwicklerseite.de 4" Web: http://max.coderonline.de/
5 5
6set background=dark 6set background=dark
7hi clear 7hi clear
8if exists("syntax_on") 8if exists("syntax_on")
9 syntax reset 9 syntax reset
10endif 10endif
11let g:colors_name="maxvb6" 11let g:colors_name="coderonline"
12 12
13 13
14set guifont=Andale\ Mono\ 12 14set guifont=Andale\ Mono\ 12
diff --git a/doc/INSTALL b/doc/INSTALL
new file mode 100644
index 0000000..3c37ac5
--- /dev/null
+++ b/doc/INSTALL
@@ -0,0 +1,23 @@
1# INSTALL
2# this should briefly show you how to install this bundle
3#
4# step 1)
5# download the current version using git
6git clone http://git.entwicklerseite.de/vim .vim/
7
8# step 2)
9# create a symbolic link to the downloaded vim.rc in you $HOME-directory
10ln -s .vim/vimrc .vimrc
11
12# step 3)
13# get vim submodules, namely this is just vundle as this will download the rest by itsown
14git submodule update --init --recursive
15
16# step 4)
17# fix errors caused by the different vim version you might be using and define the spell checkers language. Starting Vim will show you which lines are not supported on your vim installation so that you can fix them:
18vim vimrc
19
20# step 5)
21# download spell file for you language
22vim -c ":au! SpellFileMissing"
23
diff --git a/doc/shortcuts.txt b/doc/shortcuts.txt
index 9355433..18af473 100644
--- a/doc/shortcuts.txt
+++ b/doc/shortcuts.txt
@@ -2,3 +2,5 @@
2[visual mode] - with selected lines 2[visual mode] - with selected lines
3gq - format text so that it fits in whatever :set textwidth was set 3gq - format text so that it fits in whatever :set textwidth was set
4 4
5[commands]
6:spell [word] - adds a word to the current dictionary (no mistake any more)
diff --git a/vimrc b/vimrc
index 4359852..4090dad 100644
--- a/vimrc
+++ b/vimrc
@@ -132,7 +132,7 @@ else
132 set ttyfast | " modern terminals are all fast in a way 132 set ttyfast | " modern terminals are all fast in a way
133endif 133endif
134 134
135colorscheme maxvb6 135colorscheme coderonline
136syntax enable 136syntax enable
137 137
138"================================================================================ 138"================================================================================
..