self-bootstrapping vimrc's
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

540 lines
19 KiB

2 years ago
2 years ago
2 years ago
2 years ago
  1. filetype plugin indent on
  2. filetype on
  3. hi clear
  4. if exists('syntax on')
  5. syntax reset
  6. endif
  7. let g:mapleader=" "
  8. " options
  9. set nu
  10. set rnu
  11. set mouse+=a
  12. set linebreak
  13. set shiftwidth=2
  14. set tabstop=2
  15. set softtabstop=2
  16. set expandtab
  17. set smarttab
  18. set shiftround
  19. set autoindent
  20. set textwidth=80
  21. set colorcolumn=80
  22. set nowrap
  23. set undodir=~/.vim/undofiles
  24. set undofile nohlsearch incsearch
  25. set scrolloff=7
  26. set wildmode=longest,list,full
  27. set wildmenu
  28. autocmd FileType tex,text set nosmarttab autoindent
  29. autocmd Filetype python set textwidth=0 formatprg=autopep8 shiftwidth=4 tabstop=4 softtabstop=4
  30. autocmd FileType c,cpp,slang set nosmarttab autoindent
  31. autocmd Filetype markdown set nosmarttab shiftwidth=4 tabstop=4 softtabstop=4 autoindent
  32. autocmd BufReadPost *
  33. \ if line("'\"") >= 1 && line("'\"") <= line("$") && &ft !~# 'commit'
  34. \ | exe "normal! g`\""
  35. \ | endif
  36. " Remaps
  37. nnoremap <C-h> <C-w>h
  38. nnoremap <C-j> <C-w>j
  39. nnoremap <C-k> <C-w>k
  40. nnoremap <C-l> <C-w>l
  41. nnoremap <C-h> <C-w>h
  42. nnoremap <C-j> <C-w>j
  43. nnoremap <C-k> <C-w>k
  44. nnoremap <C-l> <C-w>l
  45. inoremap <A-a> ā
  46. inoremap <A-e> ē
  47. inoremap <A-i> ī
  48. inoremap <A-o> ō
  49. inoremap <A-u> ū
  50. nnoremap <F12> :w<BAR>:!texbld run compile<CR>
  51. nnoremap <F5> :w<BAR>:!./test.sh<CR>
  52. vnoremap J :m '>+1<CR>gv=gv
  53. vnoremap K :m '<-2<CR>gv=gv
  54. nnoremap J mzJ`z
  55. nnoremap <C-d> <C-d>zz
  56. nnoremap <C-u> <C-u>zz
  57. nnoremap n nzzzv
  58. nnoremap N Nzzzv
  59. xnoremap <leader>p _dP
  60. vnoremap <leader>y +y
  61. nnoremap <leader>y +y
  62. nnoremap <leader>Y +Y
  63. nnoremap <leader>x :!chmod +x %:p<CR>
  64. nnoremap <leader>X :!chmod -x %<CR>
  65. nnoremap <leader>e :! %:p<CR>
  66. nnoremap <C-n> :Lexplore<CR>
  67. nnoremap <leader>pv :Explore<CR>
  68. set termguicolors
  69. let g:seoul256_background = 233
  70. autocmd! User GoyoEnter Limelight
  71. autocmd! User GoyoLeave Limelight!
  72. let g:airline_theme = "seoul256"
  73. let g:airline_powerline_fonts = 1
  74. let g:airline#extensions#tabline#enabled = 1
  75. "===================COLORSCHEME======================================
  76. " " _____ _ ___ ___ ___ "
  77. " " | __|___ ___ _ _| |_ | _| _| "
  78. " " |__ | -_| . | | | | _|_ | . | "
  79. " " |_____|___|___|___|_|___|___|___|.vim "
  80. "
  81. " " Low-contrast dark Vim color scheme using Seoul Colors "
  82. "
  83. " File: seoul256.vim
  84. " URL: github.com/junegunn/seoul256.vim
  85. " Author: Junegunn Choi (junegunn.c@gmail.com)
  86. " License: MIT
  87. "
  88. " Copyright (c) 2017 Junegunn Choi
  89. "
  90. " MIT License
  91. "
  92. " Permission is hereby granted, free of charge, to any person obtaining
  93. " a copy of this software and associated documentation files (the
  94. " "Software"), to deal in the Software without restriction, including
  95. " without limitation the rights to use, copy, modify, merge, publish,
  96. " distribute, sublicense, and/or sell copies of the Software, and to
  97. " permit persons to whom the Software is furnished to do so, subject to
  98. " the following conditions:
  99. "
  100. " The above copyright notice and this permission notice shall be
  101. " included in all copies or substantial portions of the Software.
  102. "
  103. " THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  104. " EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  105. " MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  106. " NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
  107. " LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
  108. " OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
  109. " WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  110. if !exists('s:rgb_map')
  111. if get(g:, 'seoul256_srgb', 0)
  112. let s:rgb_map =
  113. \{ 16: '#000000', 17: '#00005f', 18: '#000087',
  114. \ 19: '#0000af', 20: '#0000d7', 21: '#0000ff',
  115. \ 22: '#005f00', 23: '#005f5f', 24: '#005f87',
  116. \ 25: '#005faf', 26: '#005fd7', 27: '#005fff',
  117. \ 28: '#008700', 29: '#00875f', 30: '#008787',
  118. \ 31: '#0087af', 32: '#0087d7', 33: '#0087ff',
  119. \ 34: '#00af00', 35: '#00af5f', 36: '#00af87',
  120. \ 37: '#00afaf', 38: '#00afd7', 39: '#00afff',
  121. \ 40: '#00d700', 41: '#00d75f', 42: '#00d787',
  122. \ 43: '#00d7af', 44: '#00d7d7', 45: '#00d7ff',
  123. \ 46: '#00ff00', 47: '#00ff5f', 48: '#00ff87',
  124. \ 49: '#00ffaf', 50: '#00ffd7', 51: '#00ffff',
  125. \ 52: '#5f0000', 53: '#5f005f', 54: '#5f0087',
  126. \ 55: '#5f00af', 56: '#5f00d7', 57: '#5f00ff',
  127. \ 58: '#5f5f00', 59: '#5f5f5f', 60: '#5f5f87',
  128. \ 61: '#5f5faf', 62: '#5f5fd7', 63: '#5f5fff',
  129. \ 64: '#5f8700', 65: '#5f875f', 66: '#5f8787',
  130. \ 67: '#5f87af', 68: '#5f87d7', 69: '#5f87ff',
  131. \ 70: '#5faf00', 71: '#5faf5f', 72: '#5faf87',
  132. \ 73: '#5fafaf', 74: '#5fafd7', 75: '#5fafff',
  133. \ 76: '#5fd700', 77: '#5fd75f', 78: '#5fd787',
  134. \ 79: '#5fd7af', 80: '#5fd7d7', 81: '#5fd7ff',
  135. \ 82: '#5fff00', 83: '#5fff5f', 84: '#5fff87',
  136. \ 85: '#5fffaf', 86: '#5fffd7', 87: '#5fffff',
  137. \ 88: '#870000', 89: '#87005f', 90: '#870087',
  138. \ 91: '#8700af', 92: '#8700d7', 93: '#8700ff',
  139. \ 94: '#875f00', 95: '#875f5f', 96: '#875f87',
  140. \ 97: '#875faf', 98: '#875fd7', 99: '#875fff',
  141. \ 100: '#878700', 101: '#87875f', 102: '#878787',
  142. \ 103: '#8787af', 104: '#8787d7', 105: '#8787ff',
  143. \ 106: '#87af00', 107: '#87af5f', 108: '#87af87',
  144. \ 109: '#87afaf', 110: '#87afd7', 111: '#87afff',
  145. \ 112: '#87d700', 113: '#87d75f', 114: '#87d787',
  146. \ 115: '#87d7af', 116: '#87d7d7', 117: '#87d7ff',
  147. \ 118: '#87ff00', 119: '#87ff5f', 120: '#87ff87',
  148. \ 121: '#87ffaf', 122: '#87ffd7', 123: '#87ffff',
  149. \ 124: '#af0000', 125: '#af005f', 126: '#af0087',
  150. \ 127: '#af00af', 128: '#af00d7', 129: '#af00ff',
  151. \ 130: '#af5f00', 131: '#af5f5f', 132: '#af5f87',
  152. \ 133: '#af5faf', 134: '#af5fd7', 135: '#af5fff',
  153. \ 136: '#af8700', 137: '#af875f', 138: '#af8787',
  154. \ 139: '#af87af', 140: '#af87d7', 141: '#af87ff',
  155. \ 142: '#afaf00', 143: '#afaf5f', 144: '#afaf87',
  156. \ 145: '#afafaf', 146: '#afafd7', 147: '#afafff',
  157. \ 148: '#afd700', 149: '#afd75f', 150: '#afd787',
  158. \ 151: '#afd7af', 152: '#afd7d7', 153: '#afd7ff',
  159. \ 154: '#afff00', 155: '#afff5f', 156: '#afff87',
  160. \ 157: '#afffaf', 158: '#afffd7', 159: '#afffff',
  161. \ 160: '#d70000', 161: '#d7005f', 162: '#d70087',
  162. \ 163: '#d700af', 164: '#d700d7', 165: '#d700ff',
  163. \ 166: '#d75f00', 167: '#d75f5f', 168: '#d75f87',
  164. \ 169: '#d75faf', 170: '#d75fd7', 171: '#d75fff',
  165. \ 172: '#d78700', 173: '#d7875f', 174: '#d78787',
  166. \ 175: '#d787af', 176: '#d787d7', 177: '#d787ff',
  167. \ 178: '#d7af00', 179: '#d7af5f', 180: '#d7af87',
  168. \ 181: '#d7afaf', 182: '#d7afd7', 183: '#d7afff',
  169. \ 184: '#d7d700', 185: '#d7d75f', 186: '#d7d787',
  170. \ 187: '#d7d7af', 188: '#d7d7d7', 189: '#d7d7ff',
  171. \ 190: '#d7ff00', 191: '#d7ff5f', 192: '#d7ff87',
  172. \ 193: '#d7ffaf', 194: '#d7ffd7', 195: '#d7ffff',
  173. \ 196: '#ff0000', 197: '#ff005f', 198: '#ff0087',
  174. \ 199: '#ff00af', 200: '#ff00d7', 201: '#ff00ff',
  175. \ 202: '#ff5f00', 203: '#ff5f5f', 204: '#ff5f87',
  176. \ 205: '#ff5faf', 206: '#ff5fd7', 207: '#ff5fff',
  177. \ 208: '#ff8700', 209: '#ff875f', 210: '#ff8787',
  178. \ 211: '#ff87af', 212: '#ff87d7', 213: '#ff87ff',
  179. \ 214: '#ffaf00', 215: '#ffaf5f', 216: '#ffaf87',
  180. \ 217: '#ffafaf', 218: '#ffafd7', 219: '#ffafff',
  181. \ 220: '#ffd700', 221: '#ffd75f', 222: '#ffd787',
  182. \ 223: '#ffd7af', 224: '#ffd7d7', 225: '#ffd7ff',
  183. \ 226: '#ffff00', 227: '#ffff5f', 228: '#ffff87',
  184. \ 229: '#ffffaf', 230: '#ffffd7', 231: '#ffffff',
  185. \ 232: '#080808', 233: '#121212', 234: '#1c1c1c',
  186. \ 235: '#262626', 236: '#303030', 237: '#3a3a3a',
  187. \ 238: '#444444', 239: '#4e4e4e', 240: '#585858',
  188. \ 241: '#626262', 242: '#6c6c6c', 243: '#767676',
  189. \ 244: '#808080', 245: '#8a8a8a', 246: '#949494',
  190. \ 247: '#9e9e9e', 248: '#a8a8a8', 249: '#b2b2b2',
  191. \ 250: '#bcbcbc', 251: '#c6c6c6', 252: '#d0d0d0',
  192. \ 253: '#dadada', 254: '#e4e4e4', 255: '#eeeeee' }
  193. else
  194. let s:rgb_map = { 16: '#000000',
  195. \ 22: '#006F00', 23: '#007173', 24: '#007299', 25: '#0074BE', 30: '#009799',
  196. \ 31: '#0099BD', 38: '#00BDDF', 52: '#730B00', 58: '#727100', 59: '#727272',
  197. \ 65: '#719872', 66: '#719899', 67: '#7299BC', 68: '#719CDF', 73: '#6FBCBD',
  198. \ 74: '#70BDDF', 88: '#9B1300', 89: '#9B1D72', 94: '#9A7200', 95: '#9A7372',
  199. \ 96: '#9A7599', 101: '#999872', 103: '#999ABD', 108: '#98BC99', 109: '#98BCBD',
  200. \ 110: '#98BEDE', 116: '#97DDDF', 125: '#BF2172', 131: '#BE7572', 137: '#BE9873',
  201. \ 143: '#BDBB72', 144: '#BDBC98', 145: '#BDBDBD', 151: '#BCDDBD', 152: '#BCDEDE',
  202. \ 153: '#BCE0FF', 161: '#E12672', 168: '#E17899', 173: '#E19972', 174: '#E09B99',
  203. \ 179: '#DFBC72', 181: '#E0BEBC', 184: '#DEDC00', 186: '#DEDD99', 187: '#DFDEBD',
  204. \ 189: '#DFDFFF', 216: '#FFBD98', 217: '#FFBFBD', 218: '#FFC0DE', 220: '#FFDD00',
  205. \ 222: '#FFDE99', 224: '#FFDFDF', 230: '#FFFFDF', 231: '#FFFFFF', 232: '#060606',
  206. \ 233: '#171717', 234: '#252525', 235: '#333233', 236: '#3F3F3F', 237: '#4B4B4B',
  207. \ 238: '#565656', 239: '#616161', 240: '#6B6B6B', 241: '#757575', 249: '#BFBFBF',
  208. \ 250: '#C8C8C8', 251: '#D1D0D1', 252: '#D9D9D9', 253: '#E1E1E1', 254: '#E9E9E9',
  209. \ 255: '#F1F1F1' }
  210. endif
  211. endif
  212. let s:background = &background
  213. let s:colors_name = get(g:, 'colors_name', '')
  214. silent! unlet s:style s:seoul256_background
  215. " 1. If g:seoul256_background is found
  216. if exists('g:seoul256_background')
  217. let s:seoul256_background = g:seoul256_background
  218. if s:seoul256_background >= 233 && s:seoul256_background <= 239
  219. let s:style = 'dark'
  220. elseif s:seoul256_background >= 252 && s:seoul256_background <= 256
  221. let s:style = 'light'
  222. else
  223. unlet s:seoul256_background
  224. endif
  225. endif
  226. if !exists('s:style')
  227. " 2. If g:colors_name is NOT 'seoul256' -> dark version
  228. if s:colors_name != 'seoul256'
  229. let s:style = 'dark'
  230. " 3. Follow &background setting
  231. else
  232. let s:style = &background
  233. endif
  234. endif
  235. let s:style_idx = s:style == 'light'
  236. " Background colors
  237. if s:style == 'dark'
  238. let s:dark_bg = get(s:, 'seoul256_background', 237)
  239. let s:light_bg = 253
  240. else
  241. let s:dark_bg = 237
  242. let s:light_bg = get(s:, 'seoul256_background', 253)
  243. endif
  244. let s:dark_bg_2 = s:dark_bg > 233 ? s:dark_bg - 2 : 16
  245. let s:light_bg_1 = min([s:light_bg + 1, 256])
  246. let s:light_bg_2 = min([s:light_bg + 2, 256])
  247. " Foreground colors
  248. let s:dark_fg = 252
  249. let s:light_fg = 239
  250. function! s:hi(item, fg, bg)
  251. let fg = a:fg[s:style_idx] > 255 ? 231 : a:fg[s:style_idx]
  252. let bg = a:bg[s:style_idx] > 255 ? 231 : a:bg[s:style_idx]
  253. if !empty(fg)
  254. execute printf("highlight %s ctermfg=%s guifg=%s", a:item, fg, get(s:rgb_map, fg, 'NONE'))
  255. endif
  256. if !empty(bg)
  257. execute printf("highlight %s ctermbg=%s guibg=%s", a:item, bg, get(s:rgb_map, bg, 'NONE'))
  258. endif
  259. endfunction
  260. let s:gui = has('gui_running')
  261. if !s:gui
  262. set t_Co=256
  263. end
  264. silent! unlet g:colors_name
  265. hi clear
  266. if exists("syntax_on")
  267. syntax reset
  268. endif
  269. call s:hi('Normal', [s:dark_fg, s:light_fg], [s:dark_bg, s:light_bg])
  270. call s:hi('LineNr', [101, 101], [s:dark_bg + 1, s:light_bg - 2])
  271. call s:hi('Visual', ['', ''], [23, 152])
  272. call s:hi('VisualNOS', ['', ''], [23, 152])
  273. call s:hi('Comment', [65, 65], ['', ''])
  274. call s:hi('Number', [222, 95], ['', ''])
  275. call s:hi('Float', [222, 95], ['', ''])
  276. call s:hi('Boolean', [103, 168], ['', ''])
  277. call s:hi('String', [109, 30], ['', ''])
  278. call s:hi('Constant', [73, 23], ['', ''])
  279. call s:hi('Character', [174, 168], ['', ''])
  280. call s:hi('Delimiter', [137, 94], ['', ''])
  281. call s:hi('StringDelimiter', [137, 94], ['', ''])
  282. call s:hi('Statement', [108, 66], ['', ''])
  283. " case, default, etc.
  284. " hi Label ctermfg=
  285. " if else end
  286. call s:hi('Conditional', [110, 31], ['', ''])
  287. " while end
  288. call s:hi('Repeat', [68, 67], ['', ''])
  289. call s:hi('Todo', [161, 125], [s:dark_bg_2, s:light_bg_2])
  290. call s:hi('Function', [187, 58], ['', ''])
  291. " Macros
  292. call s:hi('Define', [173, 131], ['', ''])
  293. call s:hi('Macro', [173, 131], ['', ''])
  294. call s:hi('Include', [173, 131], ['', ''])
  295. call s:hi('PreCondit', [173, 131], ['', ''])
  296. " #!
  297. call s:hi('PreProc', [143, 58], ['', ''])
  298. " @abc
  299. call s:hi('Identifier', [217, 96], ['', ''])
  300. " AAA Abc
  301. call s:hi('Type', [179, 94], ['', ''])
  302. " + - * / <<
  303. call s:hi('Operator', [186, 131], ['', ''])
  304. " super yield
  305. call s:hi('Keyword', [168, 168], ['', ''])
  306. " raise
  307. call s:hi('Exception', [161, 161], ['', ''])
  308. "
  309. " hi StorageClass ctermfg=
  310. call s:hi('Structure', [116, 23], ['', ''])
  311. " hi Typedef ctermfg=
  312. call s:hi('Error', [s:dark_fg, s:light_bg_1], [52, 174])
  313. call s:hi('ErrorMsg', [s:dark_fg, s:light_bg_1], [52, 168])
  314. call s:hi('Underlined', [181, 168], ['', ''])
  315. " set textwidth=80
  316. " set colorcolumn=+1
  317. call s:hi('ColorColumn', ['', ''], [s:dark_bg - 1, s:light_bg - 2])
  318. " GVIM only
  319. " hi Cursor ctermfg=
  320. " hi CursorIM ctermfg=
  321. " set cursorline cursorcolumn
  322. call s:hi('CursorLine', ['', ''], [s:dark_bg - 1, s:light_bg - 1])
  323. call s:hi('CursorLineNr', [131, 131], [s:dark_bg - 1, s:light_bg - 1])
  324. call s:hi('CursorColumn', ['', ''], [s:dark_bg - 1, s:light_bg - 1])
  325. call s:hi('NormalFloat', ['', ''], [s:dark_bg - 1, s:light_bg - 1])
  326. call s:hi('Directory', [187, 95], ['', ''])
  327. call s:hi('DiffAdd', ['NONE', 'NONE'], [22, 151])
  328. call s:hi('DiffDelete', ['NONE', 'NONE'], [95, 181])
  329. call s:hi('DiffChange', ['NONE', 'NONE'], [s:dark_bg + 3, 189])
  330. call s:hi('DiffText', ['NONE', 'NONE'], [52, 224])
  331. call s:hi('VertSplit', [s:dark_bg_2, s:light_bg - 3], [s:dark_bg_2, s:light_bg - 3])
  332. call s:hi('Folded', [101, 101], [s:dark_bg + 1, s:light_bg - 2])
  333. " set foldcolumn=1
  334. call s:hi('FoldColumn', [144, 94], [s:dark_bg + 1, s:light_bg - 2])
  335. call s:hi('MatchParen', ['', ''], [s:dark_bg + 3, s:light_bg - 3])
  336. " -- INSERT --
  337. call s:hi('ModeMsg', [173, 173], ['', ''])
  338. " let &showbreak = '> '
  339. call s:hi('NonText', [59, 145], ['', ''])
  340. call s:hi('MoreMsg', [173, 173], ['', ''])
  341. " Popup menu
  342. call s:hi('Pmenu', [s:dark_fg, s:light_fg], [s:dark_bg + 1, s:light_bg - 2])
  343. call s:hi('PmenuSel', [s:dark_fg, s:dark_fg], [95, 95])
  344. call s:hi('PmenuSbar', ['', ''], [65, 65])
  345. call s:hi('PmenuThumb', ['', ''], [23, 23])
  346. call s:hi('Search', [s:dark_fg, 255], [24, 74])
  347. call s:hi('IncSearch', [220, 220], [s:dark_bg + 1, 238])
  348. " String delimiter, interpolation
  349. call s:hi('Special', [216, 173], ['', ''])
  350. " hi SpecialChar ctermfg=
  351. " hi SpecialComment ctermfg=
  352. " hi Tag ctermfg=
  353. " hi Debug ctermfg=
  354. " :map, listchars
  355. call s:hi('SpecialKey', [59, 145], ['', ''])
  356. if !s:gui
  357. " Red / Blue / Cyan / Magenta
  358. if s:style_idx == 0
  359. hi SpellBad ctermbg=NONE cterm=underline ctermfg=168
  360. hi SpellCap ctermbg=NONE cterm=underline ctermfg=110
  361. hi SpellLocal ctermbg=NONE cterm=underline ctermfg=153
  362. hi SpellRare ctermbg=NONE cterm=underline ctermfg=218
  363. else
  364. hi SpellBad ctermbg=NONE cterm=underline ctermfg=125
  365. hi SpellCap ctermbg=NONE cterm=underline ctermfg=25
  366. hi SpellLocal ctermbg=NONE cterm=underline ctermfg=31
  367. hi SpellRare ctermbg=NONE cterm=underline ctermfg=96
  368. endif
  369. else
  370. if s:style_idx == 0
  371. execute 'hi SpellBad gui=undercurl guisp=' . s:rgb_map[168]
  372. execute 'hi SpellCap gui=undercurl guisp=' . s:rgb_map[110]
  373. execute 'hi SpellLocal gui=undercurl guisp=' . s:rgb_map[153]
  374. execute 'hi SpellRare gui=undercurl guisp=' . s:rgb_map[218]
  375. else
  376. execute 'hi SpellBad gui=undercurl guisp=' . s:rgb_map[125]
  377. execute 'hi SpellCap gui=undercurl guisp=' . s:rgb_map[25]
  378. execute 'hi SpellLocal gui=undercurl guisp=' . s:rgb_map[31]
  379. execute 'hi SpellRare gui=undercurl guisp=' . s:rgb_map[96]
  380. endif
  381. endif
  382. "
  383. call s:hi('StatusLine', [95, 95], [187, 187])
  384. call s:hi('StatusLineNC', [s:dark_bg + 2, s:light_bg - 2], [187, 238])
  385. call s:hi('StatusLineTerm', [95, 95], [187, 187])
  386. call s:hi('StatusLineTermNC', [s:dark_bg + 2, s:light_bg - 2], [187, 238])
  387. hi StatusLineTerm cterm=bold,reverse gui=bold,reverse
  388. hi StatusLineTermNC cterm=bold,reverse gui=bold,reverse
  389. call s:hi('TabLineFill', [s:dark_bg + 2, s:light_bg - 2], ['', ''])
  390. call s:hi('TabLineSel', [187, 187], [23, 66])
  391. call s:hi('TabLine', [s:dark_bg + 12, s:light_bg - 12], [s:dark_bg + 4, s:light_bg - 4])
  392. call s:hi('WildMenu', [95, 95], [184, 184])
  393. " :set all
  394. call s:hi('Title', [181, 88], ['', ''])
  395. " TODO
  396. call s:hi('Question', [179, 88], ['', ''])
  397. " Search hit bottom
  398. call s:hi('WarningMsg', [179, 88], ['', ''])
  399. " Sign column
  400. call s:hi('SignColumn', [173, 173], [s:dark_bg, s:light_bg])
  401. " Diff
  402. call s:hi('diffAdded', [108, 65], ['', ''])
  403. call s:hi('diffRemoved', [174, 131], ['', ''])
  404. hi link diffLine Constant
  405. call s:hi('Conceal', [s:dark_fg + 2, s:light_fg - 2], [s:dark_bg - 1, s:light_bg + 2])
  406. call s:hi('Ignore', [s:dark_bg + 3, s:light_bg - 3], [s:dark_bg, s:light_bg])
  407. """""""""""""""""""""""""""""""""""""""""""""""""
  408. " Plugins
  409. """""""""""""""""""""""""""""""""""""""""""""""""
  410. " vim-indent-guides
  411. " -----------------
  412. let g:indent_guides_auto_colors = 0
  413. call s:hi('IndentGuidesOdd', ['', ''], [s:dark_bg - 1, s:light_bg + 1])
  414. call s:hi('IndentGuidesEven', ['', ''], [s:dark_bg + 1, s:light_bg - 1])
  415. " vim-gitgutter
  416. " -------------
  417. call s:hi('GitGutterAdd', [108, 65], [s:dark_bg + 1, s:light_bg - 2])
  418. call s:hi('GitGutterChange', [68, 68], [s:dark_bg + 1, s:light_bg - 2])
  419. call s:hi('GitGutterDelete', [161, 161], [s:dark_bg + 1, s:light_bg - 2])
  420. call s:hi('GitGutterChangeDelete', [168, 168], [s:dark_bg + 1, s:light_bg - 2])
  421. " ale
  422. " ---
  423. call s:hi('ALEErrorSign', [161, 161], [s:dark_bg, s:light_bg])
  424. call s:hi('ALEWarningSign', [174, 131], [s:dark_bg, s:light_bg])
  425. " vim-signify
  426. " -----------
  427. call s:hi('SignifySignAdd', [108, 65], [s:dark_bg + 1, s:light_bg - 2])
  428. call s:hi('SignifySignChange', [68, 68], [s:dark_bg + 1, s:light_bg - 2])
  429. call s:hi('SignifySignDelete', [161, 161], [s:dark_bg + 1, s:light_bg - 2])
  430. " coc.nvim
  431. " --------
  432. call s:hi('CocFloating', [s:dark_fg, s:light_fg], [s:dark_bg_2, s:light_bg - 2])
  433. " http://vim.wikia.com/wiki/Highlight_unwanted_spaces
  434. " ---------------------------------------------------^^^^^
  435. call s:hi('ExtraWhitespace', ['', ''], [s:dark_bg - 1, s:light_bg - 2])
  436. " vim-ruby
  437. " --------
  438. " " rubySymbol
  439. let ruby_operators = 1
  440. call s:hi('rubyClass', [31, 31], ['', ''])
  441. " call s:hi('rubyInstanceVariable', [189, 189], ['', ''])
  442. call s:hi('rubyRegexp', [186, 101], ['', ''])
  443. call s:hi('rubyRegexpDelimiter', [168, 168], ['', ''])
  444. call s:hi('rubyArrayDelimiter', [67, 38], ['', ''])
  445. call s:hi('rubyBlockParameterList', [186, 94], ['', ''])
  446. call s:hi('rubyCurlyBlockDelimiter', [144, 101], ['', ''])
  447. " ARGV $stdout
  448. call s:hi('rubyPredefinedIdentifier', [230, 52], ['', ''])
  449. " hi rubyRegexpSpecial
  450. hi CursorLine cterm=NONE
  451. hi CursorLineNr cterm=NONE
  452. let g:seoul256_current_fg = [s:dark_fg, s:light_fg][s:style_idx]
  453. let g:seoul256_current_bg = [s:dark_bg, s:light_bg][s:style_idx]
  454. let g:colors_name = 'seoul256'
  455. if s:colors_name != g:colors_name || s:background == s:style
  456. let &background = s:style
  457. else
  458. let &background = s:background
  459. endif