diff options
author | Max Christian Pohle | 2015-11-09 20:34:05 +0100 |
---|---|---|
committer | Max Christian Pohle | 2015-11-09 20:34:05 +0100 |
commit | d3ff5513b7d7707273a1d47e52832ec1a3aa0005 (patch) | |
tree | fb05972fd053e60d2aedb11e38b3fb5f3de05cc7 /.vim/colors | |
parent | f75072a092ba37f512225902294be6f43b3aad22 (diff) | |
download | vim-d3ff5513b7d7707273a1d47e52832ec1a3aa0005.tar.bz2 vim-d3ff5513b7d7707273a1d47e52832ec1a3aa0005.zip |
visual block working with cursor keys again
reason was the setting behave=mswin (just for reference)
Diffstat (limited to '.vim/colors')
-rw-r--r-- | .vim/colors/coderonline.vim | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/.vim/colors/coderonline.vim b/.vim/colors/coderonline.vim index eb8baa6..ce58bed 100644 --- a/.vim/colors/coderonline.vim +++ b/.vim/colors/coderonline.vim | |||
@@ -140,3 +140,41 @@ highlight! link SpellRare Todo | |||
140 | " *hl-SpellBad* | 140 | " *hl-SpellBad* |
141 | 141 | ||
142 | 142 | ||
143 | " ====================== Important bits ====================== | ||
144 | "exe 'hi Normal guifg='.s:white .' guibg='.s:darkgrey | ||
145 | "exe 'hi String guifg='.s:green .' guibg='.s:darkgrey .' gui=bold' | ||
146 | "exe 'hi Function guifg='.s:violet .' guibg='.s:darkgrey .' gui=none' | ||
147 | "exe 'hi Operator guifg='.s:light_orange .' guibg='.s:darkgrey .' gui=none' | ||
148 | "exe 'hi Type guifg='.s:yellow .' guibg='.s:darkgrey .' gui=bold' | ||
149 | "exe 'hi Number guifg='.s:orange .' guibg='.s:darkgrey .' gui=none' | ||
150 | "exe 'hi Constant guifg='.s:red .' guibg='.s:darkgrey .' gui=none' | ||
151 | "exe 'hi Macro guifg='.s:magenta .' guibg='.s:darkgrey .' gui=none' | ||
152 | "exe 'hi PreProc guifg='.s:grey_blue .' guibg='.s:darkgrey .' gui=none' | ||
153 | "exe 'hi Keyword guifg='.s:light_orange .' guibg='.s:darkgrey .' gui=none' | ||
154 | "exe 'hi Comment guifg='.s:white .' guibg='.s:darkgrey .' gui=italic' | ||
155 | "exe 'hi TODO guifg='.s:grey_blue .' guibg='.s:darkgrey .' gui=italic,bold' | ||
156 | " Lay out our palette | ||
157 | let s:grey_blue = '#8a9597' | ||
158 | let s:light_grey_blue = '#a0a8b0' | ||
159 | let s:dark_grey_blue = '#34383c' | ||
160 | let s:mid_grey_blue = '#64686c' | ||
161 | let s:beige = '#ceb67f' | ||
162 | let s:light_orange = '#ebc471' | ||
163 | let s:yellow = '#e3d796' | ||
164 | let s:violet = '#a982c8' | ||
165 | let s:magenta = '#a933ac' | ||
166 | let s:green = '#e0a96f' | ||
167 | let s:lightgreen = '#c2c98f' | ||
168 | let s:red = '#d08356' | ||
169 | let s:cyan = '#74dad9' | ||
170 | let s:darkgrey = '#1a1a1a' | ||
171 | let s:grey = '#303030' | ||
172 | let s:lightgrey = '#605958' | ||
173 | let s:white = '#fffedc' | ||
174 | let s:orange = '#d08356' | ||
175 | |||
176 | " ~~~ These are specific to color_coded ~~~ | ||
177 | exe 'hi Member guifg=#0000aa gui=italic' | ||
178 | exe 'hi Variable guifg=#8800aa gui=none' | ||
179 | exe 'hi Namespace guifg=#aa0000 gui=none' | ||
180 | exe 'hi EnumConstant guifg=#00aaaa gui=none' | ||