Advertisement
Guest User

Untitled

a guest
Mar 23rd, 2019
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VIM 5.34 KB | None | 0 0
  1. "s Vim colorscheme file
  2.   " Maintainer:   Fernando Vásquez <fmorataya.04@gmail.com>
  3.   " Last Change:  2001-09-25 07:48:15 Mountain Daylight Time
  4.   " URL:          http://www.naglenet.org/vim/syntax/adrian.vim
  5.   " MAIN URL:     http://www.naglenet.org/vim
  6.  
  7.   " This is my custom syntax file to override the defaults provided with Vim.
  8.   " This file should be located in $HOME/vimfiles/colors.
  9.  
  10.   " This file should automatically be sourced by $RUNTIMEPATH.
  11.  
  12.   " NOTE(S):
  13.   " *(1)
  14.   " The color definitions assumes and is intended for a black or dark
  15.   " background.
  16.  
  17.   " *(2)
  18.   " This file is specifically in Unix style EOL format so that I can simply
  19.   " copy this file between Windows and Unix systems.  VIM can source files in
  20.   " with the UNIX EOL format (only <NL> instead of <CR><NR> for DOS) in any
  21.   " operating system if the 'fileformats' is not empty and there is no <CR>
  22.   " just before the <NL> on the first line.  See ':help :source_crnl' and
  23.   " ':help fileformats'.
  24.   "
  25.   " *(3)
  26.   " Move this file to adrian.vim for vim6.0aw.
  27.   "
  28.  
  29.  
  30.  
  31.   hi clear
  32.   set background=dark
  33.   if exists("syntax_on")
  34.           syntax reset
  35.   endif
  36.   let g:colors_name = "wpgtk"
  37.  
  38.  
  39. ~ "hi Normal                ctermfg=15  ctermbg=none
  40. ~ hi User1                  cterm=none  ctermbg=none ctermfg=7
  41. ~ hi User2                  cterm=none  ctermbg=none ctermfg=7
  42.   hi Title                  cterm=none  ctermbg=none ctermfg=DarkGrey
  43.   hi TabLineFill            cterm=none  ctermbg=8    ctermfg=15
  44.   hi TabLine                cterm=none  ctermbg=8    ctermfg=15
  45.   hi TabLineSel             cterm=none  ctermbg=14   ctermfg=0
  46.   hi StatusLine             cterm=none  ctermbg=14   ctermfg=0
  47.   hi StatusLineNC           cterm=none  ctermbg=8    ctermfg=15
  48.   hi StatusLineTerm         cterm=none  ctermfg=12   ctermfg=0
  49.   hi StatusLineTermNC       cterm=none  ctermbg=8    ctermfg=15
  50. ~ hi CursorLine             ctermbg=1   cterm=none   ctermfg=0
  51.   hi Visual                 ctermbg=14  ctermfg=0    cterm=none
  52.   hi CursorLineNr           ctermfg=15 ctermbg=6
  53. ~ hi LineNr                 ctermfg=7  ctermbg=none
  54.   hi VertSplit              ctermfg=0   ctermbg=8    cterm=none
  55. ~ hi Specialkey             ctermfg=13  ctermbg=none
  56.   hi ErrorMsg               ctermfg=0   ctermbg=9
  57.   hi Pmenu                  ctermbg=8   ctermfg=15
  58.   hi PmenuSel               ctermbg=14  ctermfg=0
  59.   hi SpellBad               ctermfg=8   ctermbg=9    term=none
  60. ~ hi Comment                ctermfg=4   ctermbg=none    cterm=italic
  61.   hi MatchParen             ctermfg=12  ctermbg=8   cterm=none
  62.   hi DiffAdd                                ctermfg=0
  63.   hi DiffChange                     ctermfg=0
  64.   hi YCMWarningSection      ctermfg=0  ctermbg=4
  65.   hi Special                ctermfg=9
  66.   hi WarningMsg             ctermfg=10
  67.   hi MoreMsg                ctermfg=15
  68.   hi Directory              ctermfg=11
  69.   hi Folded                 ctermfg=15  ctermbg=8
  70.   hi Underlined             term=underline ctermfg=12
  71.  
  72.   highlight Constant   cterm=none      ctermfg=11   guifg=#ffa0a0
  73.   "highlight Number        term=underline ctermfg=DarkGrey                     guifg=Yellow
  74.   highlight Identifier ctermfg=12       cterm=none guifg=#40ffff
  75.   highlight Statement  ctermfg=10  gui=bold  guifg=#ffff60
  76.   highlight Keyword    ctermfg=13
  77.   highlight Conditional ctermfg=11
  78.   highlight Number     ctermfg=12
  79.   highlight PreProc    ctermfg=10      guifg=#ff4500
  80.   highlight Type       ctermfg=13       cterm=italic term=none
  81.   highlight Ignore     ctermfg=0       guifg=bg
  82.   highlight Error      ctermfg=0       ctermbg=1 guifg=White guibg=Red
  83.   highlight Todo       ctermfg=15      ctermbg=8 guifg=Blue  guibg=Yellow
  84.   highlight SignColumn ctermbg=8       ctermfg=12
  85.  
  86.   " Change the highlight of search matches (for use with :set hls).
  87.   highlight Search                    ctermfg=0      ctermbg=12  guifg=Black    guibg=Yellow
  88.  
  89.   " Change the highlight of visual highlight.
  90.  
  91.   highlight Float          ctermfg=14  guifg=#88AAEE
  92. ~ highlight Exception      ctermfg=10 ctermbg=none guifg=Red   guibg=White
  93.   highlight Function       ctermfg=14
  94.   highlight Typedef        ctermfg=10  ctermbg=8   gui=italic  guifg=White guibg=Blue
  95.   highlight SpecialChar    ctermfg=12 ctermbg=8   guifg=Black guibg=White
  96.   highlight Delimiter      ctermfg=15 ctermbg=8   guifg=White guibg=Black
  97.   highlight SpecialComment ctermfg=11 ctermbg=8   guifg=Black guibg=Green
  98.  
  99.   " Common groups that link to default highlighting.
  100.   " You can specify other highlighting easily.
  101.   hi! link Question Type
  102.   hi! link FoldColumn Folded
  103.  
  104.   highlight link Special        Type
  105.   highlight link String         Constant
  106.   highlight link Character      Constant
  107.   highlight link Boolean        Statement
  108.   highlight link Repeat         Conditional
  109.   highlight link Label          Type
  110.   highlight link Operator       Type
  111.   highlight link Include        PreProc
  112.   highlight link Define         PreProc
  113.   highlight link Macro          PreProc
  114.   highlight link PreCondit      PreProc
  115.   highlight link StorageClass   Type
  116.   highlight link Structure      Type
  117.   highlight link Tag            Special
  118.   highlight link Debug          Special
  119.   highlight link Typedef        Type
  120.  
  121.   "highlight link SpecialChar     Special
  122.   "highlight link Delimiter       Special
  123.   "highlight link SpecialComment  Special
  124.   "highlight link Exception       Type
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement