Dotfiles config update (2021-11-20)
This commit is contained in:
parent
30e6cb9954
commit
b9f7965bb0
67
.config/nvim/pack/colors/falcon/.githelpers
Executable file
67
.config/nvim/pack/colors/falcon/.githelpers
Executable file
|
@ -0,0 +1,67 @@
|
|||
#!/bin/bash
|
||||
|
||||
# Log output:
|
||||
#
|
||||
# * 51c333e (12 days) <Gary Bernhardt> add vim-eunuch
|
||||
#
|
||||
# The time massaging regexes start with ^[^<]* because that ensures that they
|
||||
# only operate before the first "<". That "<" will be the beginning of the
|
||||
# author name, ensuring that we don't destroy anything in the commit message
|
||||
# that looks like time.
|
||||
#
|
||||
# The log format uses } characters between each field, and `column` is later
|
||||
# used to split on them. A } in the commit subject or any other field will
|
||||
# break this.
|
||||
|
||||
HASH="%C(12)%h%Creset"
|
||||
RELATIVE_TIME="%C(7)(%ar)%Creset"
|
||||
AUTHOR="%C(249)<%an>%Creset"
|
||||
REFS="%C(magenta)%d%Creset"
|
||||
SUBJECT="%C(245)%s"
|
||||
|
||||
FORMAT="$HASH}$RELATIVE_TIME}$AUTHOR}$REFS $SUBJECT"
|
||||
|
||||
ANSI_BLACK='\033[30m'
|
||||
ANSI_BLACK_BOLD='\033[0;30;1m'
|
||||
ANSI_RED='\033[31m'
|
||||
ANSI_RED_BOLD='\033[0;31;1m'
|
||||
ANSI_GREEN='\033[32m'
|
||||
ANSI_GREEN_BOLD='\033[0;32;1m'
|
||||
ANSI_YELLOW='\033[33m'
|
||||
ANSI_YELLOW_BOLD='\033[0;33;1m'
|
||||
ANSI_BLUE='\033[34m'
|
||||
ANSI_BLUE_BOLD='\033[0;34;1m'
|
||||
ANSI_MAGENTA='\033[35m'
|
||||
ANSI_MAGENTA_BOLD='\033[0;35;1m'
|
||||
ANSI_CYAN='\033[36m'
|
||||
ANSI_CYAN_BOLD='\033[0;36;1m'
|
||||
ANSI_WHITE='\033[37m'
|
||||
ANSI_WHITE_BOLD='\033[0;37;1m'
|
||||
ANSI_RESET='\033[0m'
|
||||
|
||||
BLUE_GRAY='\033[0;38;5;12m'
|
||||
BR_YELLOW='\033[0;38;5;3m'
|
||||
|
||||
show_git_head() {
|
||||
pretty_git_log -1
|
||||
git show -p --pretty="tformat:"
|
||||
}
|
||||
|
||||
pretty_git_log() {
|
||||
git log --graph --pretty="tformat:${FORMAT}" $* |
|
||||
# Replace (2 years ago) with (2 years)
|
||||
sed -Ee 's/(^[^<]*) ago\)/\1)/' |
|
||||
# Replace (2 years, 5 months) with (2 years)
|
||||
sed -Ee 's/(^[^<]*), [[:digit:]]+ .*months?\)/\1)/' |
|
||||
# Line columns up based on } delimiter
|
||||
column -s '}' -t |
|
||||
# Color merge commits specially
|
||||
sed -Ee "s/(Merge (branch|remote-tracking branch|pull request) .*$)/$(printf $BR_YELLOW)\1$(printf $ANSI_RESET)/" |
|
||||
# Page only if we're asked to.
|
||||
if [ -n "$GIT_NO_PAGER" ]; then
|
||||
cat
|
||||
else
|
||||
# Page only if needed.
|
||||
less --quit-if-one-screen --no-init --RAW-CONTROL-CHARS --chop-long-lines
|
||||
fi
|
||||
}
|
16
.config/nvim/pack/colors/falcon/.vimrc_check
Executable file
16
.config/nvim/pack/colors/falcon/.vimrc_check
Executable file
|
@ -0,0 +1,16 @@
|
|||
set nocompatible " disable compatibility with vi
|
||||
syntax enable "enable syntax highlighting
|
||||
|
||||
" Assumes vim-plug is installed.
|
||||
call plug#begin()
|
||||
Plug 'fenetikm/falcon'
|
||||
call plug#end()
|
||||
|
||||
"enable 24bit support.
|
||||
set termguicolors
|
||||
|
||||
" enables the active / inactive functionality.
|
||||
let g:falcon_background = 0
|
||||
let g:falcon_inactive = 1
|
||||
|
||||
colorscheme falcon
|
21
.config/nvim/pack/colors/falcon/LICENSE
Executable file
21
.config/nvim/pack/colors/falcon/LICENSE
Executable file
|
@ -0,0 +1,21 @@
|
|||
MIT License
|
||||
|
||||
Copyright (c) 2018 fenetikm
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
28
.config/nvim/pack/colors/falcon/README.md
Executable file
28
.config/nvim/pack/colors/falcon/README.md
Executable file
|
@ -0,0 +1,28 @@
|
|||
![falcon logo](https://raw.githubusercontent.com/fenetikm/falcon/master/support/logo2.png)
|
||||
|
||||
A colour scheme for terminals, vim and friends.
|
||||
|
||||
This is **v2.0** - vastly improved, with more tweak, less cruft.
|
||||
|
||||
Falcon is a work horse of a colour scheme that will (hopefully) stand the test of time - with fewer gimmicks, a more restrained colour palette but with a splash just enough to distinguish everything semantically as well a touch of delight thrown in.
|
||||
|
||||
![hero shot](https://raw.githubusercontent.com/fenetikm/falcon/master/support/hero2.png)
|
||||
|
||||
## Get started
|
||||
|
||||
Head to [the wiki installation page](https://github.com/fenetikm/falcon/wiki/Installation) to get going. Also have a look through what plugins and programs are [covered](https://github.com/fenetikm/falcon/wiki/Coverage), browse the [screenshot gallery](https://github.com/fenetikm/falcon/wiki/Screenshots), the [palette](https://github.com/fenetikm/falcon/wiki/Palette) and if you need a little bit of help there is also the [troubleshooting section and
|
||||
FAQ](https://github.com/fenetikm/falcon/wiki/Troubleshooting-&-FAQ).
|
||||
|
||||
## Contact
|
||||
|
||||
If you want to get in touch please [drop me a line](https://michaelwelford.com/contact).
|
||||
|
||||
## Big Thanks
|
||||
|
||||
* Built with [estilo](https://github.com/jacoborus/estilo), gracias!
|
||||
* Inspiration: gruvbox for not being quite right to my tastes and thus being the seed of this project
|
||||
* Everyone who Vims, f'yeah!
|
||||
|
||||
## License
|
||||
|
||||
Falcon is released under the [MIT license](https://github.com/fenetikm/falcon/blob/master/LICENSE).
|
75
.config/nvim/pack/colors/falcon/TODO.md
Executable file
75
.config/nvim/pack/colors/falcon/TODO.md
Executable file
|
@ -0,0 +1,75 @@
|
|||
# Falcon Todo
|
||||
|
||||
## @Todo
|
||||
* statusline - airline check
|
||||
* increase contrast in markdown for code blocks - maybe another gray...
|
||||
* check gnome
|
||||
* add in palette file with rbg and hex and names
|
||||
* vscode scheme, in progress
|
||||
* update other themes with indigo for selection colour
|
||||
* kitty file for inclusion
|
||||
|
||||
## VSCode refs
|
||||
- https://github.com/sdras/night-owl-vscode-theme
|
||||
- https://css-tricks.com/creating-a-vs-code-theme/
|
||||
- https://marketplace.visualstudio.com/items?itemName=whizkydee.material-palenight-theme&WT.mc_id=csstricks-themearticle-sdras
|
||||
|
||||
## Full list
|
||||
* Tag current version, create 2.x branch
|
||||
* Add in some lean prompt stuff, fix up brackets to be delimiter colour etc.
|
||||
* Fill out corpus (https://rosettacode.org/wiki/Rosetta_Code, https://rosettacode.org/wiki/Sorting_algorithms/Quicksort)
|
||||
* PHP
|
||||
* Python
|
||||
* JS
|
||||
* Java
|
||||
* C++
|
||||
* HTML
|
||||
* Haskell
|
||||
* Shell
|
||||
* CSS
|
||||
* HTML
|
||||
* Automate the screenshot taking
|
||||
|
||||
## Done
|
||||
* redo screenshots since String syntax change
|
||||
* Option to force background colour / don't do
|
||||
* Update all values across repo - done?
|
||||
* everything else:
|
||||
* alfred
|
||||
* alacritty
|
||||
* prism
|
||||
* taskwarrior
|
||||
* timewarrior
|
||||
* Update palette images
|
||||
* Update hero image
|
||||
* New logo
|
||||
* The README is too long - split into wiki pages on github
|
||||
* vimdiff colours - done
|
||||
* Check all grays re blueness - done
|
||||
* kitty - done
|
||||
* terminal colours - done
|
||||
* inactive colour - a touch bluer and brighter - done
|
||||
* purple use - anywhere else? - done
|
||||
* fix status line and cursor line, too close - done
|
||||
* other syntax highlighting for different code types = done?
|
||||
* PHP - done
|
||||
* tmux - done
|
||||
* Colour ideas:
|
||||
* Introduce a tan colour, mostly in place of bright yellow - done
|
||||
* Maybe introduce another darker blue colour - done
|
||||
* Tweak the terminal colours, more subdued, try other alternates e.g. pink - done
|
||||
* Background colour bluer - done
|
||||
* Fix contrast and: - done
|
||||
* Tweak colours back to their humanistic values e.g. remove saturation from some of the brighter colours - done
|
||||
* Inactive background colour more gray, tad lighter - done
|
||||
* Tweak contrast, use of white vs orange for delimiters - done
|
||||
* Fix exa attributes, too colourful currently - done
|
||||
|
||||
## Someday
|
||||
* L*a*b values
|
||||
* Light version? probably not though. Maybe some contrast options.
|
||||
* More support:
|
||||
* Mutt
|
||||
* TeX
|
||||
* highlight: https://gitlab.com/saalen/highlight
|
||||
* Setup page under projects on michaelwelford.com, point to blog posts about it.
|
38
.config/nvim/pack/colors/falcon/alacritty/alacritty.yml
Executable file
38
.config/nvim/pack/colors/falcon/alacritty/alacritty.yml
Executable file
|
@ -0,0 +1,38 @@
|
|||
# falcon colorscheme for alacritty
|
||||
# by fenetikm, https://github.com/fenetikm/falcon
|
||||
colors:
|
||||
# Default colors
|
||||
primary:
|
||||
background: '0x020221'
|
||||
foreground: '0xb4b4b9'
|
||||
|
||||
# Colors the cursor will use if `custom_cursor_colors` is true
|
||||
cursor:
|
||||
text: '0x020221'
|
||||
cursor: '0xffe8c0'
|
||||
|
||||
# Normal colors
|
||||
normal:
|
||||
black: '0x000004'
|
||||
red: '0xff3600'
|
||||
green: '0x718e3f'
|
||||
yellow: '0xffc552'
|
||||
blue: '0x635196'
|
||||
magenta: '0xff761a'
|
||||
cyan: '0x34bfa4'
|
||||
white: '0xb4b4b9'
|
||||
|
||||
# Bright colors
|
||||
bright:
|
||||
black: '0x020221'
|
||||
red: '0xff8e78'
|
||||
green: '0xb1bf75'
|
||||
yellow: '0xffd392'
|
||||
blue: '0x99a4bc'
|
||||
magenta: '0xffb07b'
|
||||
cyan: '0x8bccbf'
|
||||
white: '0xf8f8ff'
|
||||
|
||||
# Use custom cursor colors. If true, display the cursor in the cursor.foreground
|
||||
# and cursor.background colors, otherwise invert the colors of the cursor.
|
||||
custom_cursor_colors: true
|
61
.config/nvim/pack/colors/falcon/alfred/falcon-alternate.alfredappearance
Executable file
61
.config/nvim/pack/colors/falcon/alfred/falcon-alternate.alfredappearance
Executable file
|
@ -0,0 +1,61 @@
|
|||
{
|
||||
"alfredtheme" : {
|
||||
"result" : {
|
||||
"textSpacing" : 4,
|
||||
"subtext" : {
|
||||
"size" : 12,
|
||||
"colorSelected" : "#DFDFE5FF",
|
||||
"font" : "Fira Code",
|
||||
"color" : "#57575EFF"
|
||||
},
|
||||
"shortcut" : {
|
||||
"size" : 16,
|
||||
"colorSelected" : "#B4B4B9FF",
|
||||
"font" : "Fira Code",
|
||||
"color" : "#787882FF"
|
||||
},
|
||||
"backgroundSelected" : "#212127FF",
|
||||
"text" : {
|
||||
"size" : 20,
|
||||
"colorSelected" : "#F8F8FFFF",
|
||||
"font" : "Fira Code",
|
||||
"color" : "#B4B4B9FF"
|
||||
},
|
||||
"iconPaddingHorizontal" : 12,
|
||||
"paddingVertical" : 9,
|
||||
"iconSize" : 32
|
||||
},
|
||||
"search" : {
|
||||
"paddingVertical" : 11,
|
||||
"background" : "#2F2F3AFF",
|
||||
"spacing" : 0,
|
||||
"text" : {
|
||||
"size" : 32,
|
||||
"colorSelected" : "#000004FF",
|
||||
"font" : "Fira Code",
|
||||
"color" : "#FFC552FF"
|
||||
},
|
||||
"backgroundSelected" : "#BFDAFFFF"
|
||||
},
|
||||
"window" : {
|
||||
"color" : "#2F2F3AFF",
|
||||
"paddingHorizontal" : 9,
|
||||
"width" : 560,
|
||||
"borderPadding" : 0,
|
||||
"borderColor" : "#FFC552FF",
|
||||
"blur" : 0,
|
||||
"roundness" : -16,
|
||||
"paddingVertical" : 0
|
||||
},
|
||||
"credit" : "Michael Welford",
|
||||
"separator" : {
|
||||
"color" : "#00000400",
|
||||
"thickness" : 0
|
||||
},
|
||||
"scrollbar" : {
|
||||
"color" : "#57575EFF",
|
||||
"thickness" : 0
|
||||
},
|
||||
"name" : "Falcon Alternate"
|
||||
}
|
||||
}
|
61
.config/nvim/pack/colors/falcon/alfred/falcon-default.alfredappearance
Executable file
61
.config/nvim/pack/colors/falcon/alfred/falcon-default.alfredappearance
Executable file
|
@ -0,0 +1,61 @@
|
|||
{
|
||||
"alfredtheme" : {
|
||||
"result" : {
|
||||
"textSpacing" : 4,
|
||||
"subtext" : {
|
||||
"size" : 12,
|
||||
"colorSelected" : "#DFDFE5FF",
|
||||
"font" : "Fira Code",
|
||||
"color" : "#57575EFF"
|
||||
},
|
||||
"shortcut" : {
|
||||
"size" : 16,
|
||||
"colorSelected" : "#B4B4B9FF",
|
||||
"font" : "Fira Code",
|
||||
"color" : "#787882FF"
|
||||
},
|
||||
"backgroundSelected" : "#212127FF",
|
||||
"text" : {
|
||||
"size" : 20,
|
||||
"colorSelected" : "#F8F8FFFF",
|
||||
"font" : "Fira Code",
|
||||
"color" : "#B4B4B9FF"
|
||||
},
|
||||
"iconPaddingHorizontal" : 12,
|
||||
"paddingVertical" : 9,
|
||||
"iconSize" : 32
|
||||
},
|
||||
"search" : {
|
||||
"paddingVertical" : 11,
|
||||
"background" : "#020221FF",
|
||||
"spacing" : 0,
|
||||
"text" : {
|
||||
"size" : 32,
|
||||
"colorSelected" : "#000004FF",
|
||||
"font" : "Fira Code",
|
||||
"color" : "#FFC552FF"
|
||||
},
|
||||
"backgroundSelected" : "#BFDAFFFF"
|
||||
},
|
||||
"window" : {
|
||||
"color" : "#020221FF",
|
||||
"paddingHorizontal" : 9,
|
||||
"width" : 560,
|
||||
"borderPadding" : 0,
|
||||
"borderColor" : "#FFC552FF",
|
||||
"blur" : 0,
|
||||
"roundness" : -16,
|
||||
"paddingVertical" : 0
|
||||
},
|
||||
"credit" : "Michael Welford",
|
||||
"separator" : {
|
||||
"color" : "#00000400",
|
||||
"thickness" : 0
|
||||
},
|
||||
"scrollbar" : {
|
||||
"color" : "#57575EFF",
|
||||
"thickness" : 0
|
||||
},
|
||||
"name" : "Falcon Default"
|
||||
}
|
||||
}
|
50
.config/nvim/pack/colors/falcon/autoload/airline/themes/falcon.vim
Executable file
50
.config/nvim/pack/colors/falcon/autoload/airline/themes/falcon.vim
Executable file
|
@ -0,0 +1,50 @@
|
|||
" ============================================================
|
||||
" falcon
|
||||
"
|
||||
" URL:https://github.com/fenetikm/falcon
|
||||
" Author: Michael Welford
|
||||
" License: MIT
|
||||
" Last Change: 2021/10/25 20:07
|
||||
" ============================================================
|
||||
|
||||
let g:airline#themes#falcon#palette = {}
|
||||
|
||||
let s:normal1 = [ "#000004", "#B4B4B9", 0, 249 ]
|
||||
let s:normal2 = [ "#B4B4B9", "#36363A", 249, 237 ]
|
||||
let s:normal3 = [ "#787882", "#28282D", 243, 235 ]
|
||||
let g:airline#themes#falcon#palette.normal = airline#themes#generate_color_map(s:normal1, s:normal2, s:normal3)
|
||||
|
||||
let s:insert1 = [ "#000004", "#FF3600", 0, 202 ]
|
||||
let s:insert2 = [ "#B4B4B9", "#36363A", 249, 237 ]
|
||||
let s:insert3 = [ "#B4B4B9", "#28282D", 249, 235 ]
|
||||
let g:airline#themes#falcon#palette.insert = airline#themes#generate_color_map(s:insert1, s:insert2, s:insert3)
|
||||
|
||||
let s:replace1 = [ "#000004", "#FF761A", 0, 208 ]
|
||||
let s:replace2 = [ "#B4B4B9", "#36363A", 249, 237 ]
|
||||
let s:replace3 = [ "#B4B4B9", "#28282D", 249, 235 ]
|
||||
let g:airline#themes#falcon#palette.replace = airline#themes#generate_color_map(s:replace1, s:replace2, s:replace3)
|
||||
|
||||
let s:visual1 = [ "#000004", "#FFC552", 0, 221 ]
|
||||
let s:visual2 = [ "#B4B4B9", "#36363A", 249, 237 ]
|
||||
let s:visual3 = [ "#B4B4B9", "#28282D", 249, 235 ]
|
||||
let g:airline#themes#falcon#palette.visual = airline#themes#generate_color_map(s:visual1, s:visual2, s:visual3)
|
||||
|
||||
let s:inactive1 = [ "#57575E", "#1C1C22", 240, 234 ]
|
||||
let s:inactive2 = [ "#57575E", "#1C1C22", 240, 234 ]
|
||||
let s:inactive3 = [ "#57575E", "#1C1C22", 240, 234 ]
|
||||
let g:airline#themes#falcon#palette.inactive = airline#themes#generate_color_map(s:inactive1, s:inactive2, s:inactive3)
|
||||
|
||||
if !get(g:, 'loaded_ctrlp', 0)
|
||||
finish
|
||||
endif
|
||||
|
||||
let s:CP1 = [ "#787882", "#36363A", 243, 237 ]
|
||||
let s:CP2 = [ "#787882", "#36363A", 243, 237 ]
|
||||
let s:CP3 = [ "#787882", "#36363A", 243, 237 ]
|
||||
|
||||
let g:airline#themes#falcon#palette.ctrlp = airline#extensions#ctrlp#generate_color_map(s:CP1, s:CP2, s:CP3)
|
||||
|
||||
" ===================================
|
||||
" Generated by Estilo 1.5.0
|
||||
" https://github.com/jacoborus/estilo
|
||||
" ===================================
|
42
.config/nvim/pack/colors/falcon/autoload/lightline/colorscheme/falcon.vim
Executable file
42
.config/nvim/pack/colors/falcon/autoload/lightline/colorscheme/falcon.vim
Executable file
|
@ -0,0 +1,42 @@
|
|||
" ============================================================
|
||||
" Falcon
|
||||
"
|
||||
" URL: https://github.com/fenetikm/falcon
|
||||
" Author: Michael Welford
|
||||
" License: MIT
|
||||
" Last Change: 2018/01/06 22:27
|
||||
" ============================================================
|
||||
|
||||
if exists('g:lightline')
|
||||
let s:p = {"normal": {}, "inactive": {}, "insert": {}, "replace": {}, "visual": {}, "tabline": {} }
|
||||
|
||||
let s:p.normal.left = [[["#000004", 0], ["#dfdfe5", 254]], [["#dfdfe5", 248], ["#28282d", 241]], [["#787882", 248], ["#28282d", 241]]]
|
||||
let s:p.normal.right = [[["#000004", 0], ["#dfdfe5", 254]], [["#787882", 248], ["#28282d", 241]]]
|
||||
let s:p.normal.middle = [[["#57575e", 241], ["#28282d", 237]]]
|
||||
let s:p.inactive.left = [[["#57575e", 241], ["#1c1c22", 237], 'italic'], [["#57575e", 241], ["#1c1c22", 237], 'italic']]
|
||||
let s:p.inactive.right = [[["#57575e", 241], ["#1c1c22", 237], 'italic'], [["#57575e", 241], ["#1c1c22", 237], 'italic']]
|
||||
let s:p.inactive.middle = [[["#57575e", 241], ["#1c1c22", 237], 'italic']]
|
||||
let s:p.insert.left = [[["#000004", 0], ["#ff3600", 202]], [["#d4d4d9", 248], ["#28282d", 241]], [["#787882", 248], ["#28282d", 241]]]
|
||||
let s:p.insert.right = [[["#000004", 0], ["#ff3600", 202]], [["#787882", 248], ["#28282d", 241]]]
|
||||
let s:p.insert.middle = [[["#57575e", 241], ["#28282d", 241]]]
|
||||
let s:p.replace.left = [[["#000004", 0], ["#ff761a", 208]], [["#d4d4d9", 248], ["#28282d", 241]], [["#787882", 248], ["#28282d", 241]]]
|
||||
let s:p.replace.right = [[["#000004", 0], ["#ff761a", 208]], [["#787882", 248], ["#28282d", 241]]]
|
||||
let s:p.replace.middle = [[["#57575e", 241], ["#28282d", 241]]]
|
||||
let s:p.visual.left = [[["#000004", 0], ["#ffc552", 220]], [["#d4d4d9", 248], ["#28282d", 241]], [["#787882", 248], ["#28282d", 241]]]
|
||||
let s:p.visual.right = [[["#000004", 0], ["#ffc552", 220]], [["#787882", 248], ["#28282d", 241]]]
|
||||
let s:p.visual.middle = [[["#57575e", 241], ["#28282d", 241]]]
|
||||
let s:p.tabline.left = [[["#57575e", 241], ["#28282d", 237]]]
|
||||
let s:p.tabline.tabsel = [[["#dfdfe5", 248], ["#28282d", 237]]]
|
||||
let s:p.tabline.middle = [[["#57575e", 241], ["#28282d", 237]]]
|
||||
let s:p.tabline.right = [[["#57575e", 241], ["#28282d", 237]]]
|
||||
let s:p.normal.error = [[["#000004", 254], ["#ff3600", 202]]]
|
||||
let s:p.normal.warning = [[["#000004", 208], ["#ff761a", 208]]]
|
||||
let s:p.normal.ok = [[["#000004", 208], ["#718e3f", 208]]]
|
||||
|
||||
let g:lightline#colorscheme#falcon#palette = lightline#colorscheme#flatten(s:p)
|
||||
endif
|
||||
|
||||
" ===================================
|
||||
" Generated by Estilo 1.3.3
|
||||
" https://github.com/jacoborus/estilo
|
||||
" ===================================
|
597
.config/nvim/pack/colors/falcon/colors/falcon.vim
Executable file
597
.config/nvim/pack/colors/falcon/colors/falcon.vim
Executable file
|
@ -0,0 +1,597 @@
|
|||
" ===============================================================
|
||||
" falcon
|
||||
"
|
||||
" URL: https://github.com/fenetikm/falcon
|
||||
" Author: Michael Welford
|
||||
" License: MIT
|
||||
" Last Change: 2021/10/25 20:07
|
||||
" ===============================================================
|
||||
|
||||
set background=dark
|
||||
hi clear
|
||||
if exists("syntax_on")
|
||||
syntax reset
|
||||
endif
|
||||
let g:colors_name="falcon"
|
||||
|
||||
|
||||
let Italic = ""
|
||||
if exists('g:falcon_italic')
|
||||
let Italic = "italic"
|
||||
endif
|
||||
let g:falcon_italic = get(g:, 'falcon_italic', 0)
|
||||
|
||||
let Bold = ""
|
||||
if exists('g:falcon_bold')
|
||||
let Bold = "bold"
|
||||
endif
|
||||
|
||||
let g:falcon_bold = get(g:, 'falcon_bold', 0)
|
||||
hi ALEErrorSign guifg=#FF3600 ctermfg=202 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi ALEWarningSign guifg=#FF761A ctermfg=208 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi ALEInfoSign guifg=#B4B4B9 ctermfg=249 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi link AspVBSVariableSimple Identifier
|
||||
hi link AspVBSStatement Keyword
|
||||
hi ColorColumn guifg=NONE ctermfg=NONE guibg=#151521 ctermbg=234 gui=NONE cterm=NONE
|
||||
hi Conceal guifg=NONE ctermfg=NONE guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi Cursor guifg=NONE ctermfg=NONE guibg=#787882 ctermbg=243 gui=NONE cterm=NONE
|
||||
hi CursorColumn guifg=NONE ctermfg=NONE guibg=#171729 ctermbg=234 gui=NONE cterm=NONE
|
||||
hi CursorLine guifg=NONE ctermfg=NONE guibg=#2F2F3A ctermbg=236 gui=NONE cterm=NONE
|
||||
hi CursorLineNr guifg=#B4B4B9 ctermfg=249 guibg=#2F2F3A ctermbg=236 gui=NONE cterm=NONE
|
||||
hi Directory guifg=#99A4BC ctermfg=248 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi DiffAdd guifg=NONE ctermfg=NONE guibg=#203003 ctermbg=234 gui=NONE cterm=NONE
|
||||
hi DiffChange guifg=NONE ctermfg=NONE guibg=#031630 ctermbg=233 gui=NONE cterm=NONE
|
||||
hi DiffDelete guifg=NONE ctermfg=NONE guibg=#300E03 ctermbg=233 gui=NONE cterm=NONE
|
||||
hi DiffText guifg=NONE ctermfg=NONE guibg=#203003 ctermbg=234 gui=NONE cterm=NONE
|
||||
hi ErrorMsg guifg=#FF3600 ctermfg=202 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi VertSplit guifg=#787882 ctermfg=243 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi Folded guifg=#787882 ctermfg=243 guibg=#212127 ctermbg=235 gui=NONE cterm=NONE
|
||||
hi FoldColumn guifg=#787882 ctermfg=243 guibg=#212127 ctermbg=235 gui=NONE cterm=NONE
|
||||
hi SignColumn guifg=#99A4BC ctermfg=248 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi IncSearch guifg=#020221 ctermfg=0 guibg=#BFDAFF ctermbg=153 gui=Bold cterm=Bold
|
||||
hi LineNr guifg=#57575E ctermfg=240 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi MatchParen guifg=#f0e1ce ctermfg=224 guibg=NONE ctermbg=NONE gui=Bold cterm=Bold
|
||||
hi NonText guifg=#36363A ctermfg=237 guibg=#020221 ctermbg=0 gui=NONE cterm=NONE
|
||||
hi Normal guifg=#B4B4B9 ctermfg=249 guibg=#020221 ctermbg=0 gui=NONE cterm=NONE
|
||||
hi PMenu guifg=#878791 ctermfg=102 guibg=#171729 ctermbg=234 gui=NONE cterm=NONE
|
||||
hi PMenuSel guifg=#000004 ctermfg=0 guibg=#FFC552 ctermbg=221 gui=NONE cterm=NONE
|
||||
hi PmenuSbar guifg=#B4B4B9 ctermfg=249 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi PmenuThumb guifg=#DFDFE5 ctermfg=254 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi Question guifg=#DFDFE5 ctermfg=254 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi Search guifg=#BFDAFF ctermfg=153 guibg=NONE ctermbg=NONE gui=Bold,underline cterm=Bold,underline
|
||||
hi SpecialKey guifg=#787882 ctermfg=243 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi SpellBad guifg=NONE ctermfg=NONE guibg=#3F3A59 ctermbg=237 gui=underline cterm=underline
|
||||
hi SpellLocal guifg=NONE ctermfg=NONE guibg=#3F3A59 ctermbg=237 gui=underline cterm=underline
|
||||
hi SpellCap guifg=NONE ctermfg=NONE guibg=#3F3A59 ctermbg=237 gui=undercurl cterm=undercurl
|
||||
hi SpellRare guifg=NONE ctermfg=NONE guibg=#3F3A59 ctermbg=237 gui=underline cterm=underline
|
||||
hi StatusLine guifg=#787882 ctermfg=243 guibg=#28282D ctermbg=235 gui=NONE cterm=NONE
|
||||
hi StatusLineNC guifg=#787882 ctermfg=243 guibg=#36363A ctermbg=237 gui=NONE cterm=NONE
|
||||
hi TabLine guifg=#787882 ctermfg=243 guibg=#36363A ctermbg=237 gui=NONE cterm=NONE
|
||||
hi TabLineFill guifg=NONE ctermfg=NONE guibg=#212127 ctermbg=235 gui=NONE cterm=NONE
|
||||
hi TabLineSel guifg=#DFDFE5 ctermfg=254 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi Title guifg=#cfc1b2 ctermfg=181 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi Visual guifg=#DFDFE5 ctermfg=254 guibg=#2D1078 ctermbg=4 gui=NONE cterm=NONE
|
||||
hi WildMenu guifg=#020221 ctermfg=0 guibg=#FFC552 ctermbg=221 gui=NONE cterm=NONE
|
||||
hi Comment guifg=#787882 ctermfg=243 guibg=NONE ctermbg=NONE gui=Italic cterm=Italic
|
||||
hi Constant guifg=#B4B4B9 ctermfg=249 guibg=NONE ctermbg=NONE gui=Bold cterm=Bold
|
||||
hi String guifg=#C8D0E3 ctermfg=252 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi link Character String
|
||||
hi Boolean guifg=#B4B4B9 ctermfg=249 guibg=NONE ctermbg=NONE gui=Italic cterm=Italic
|
||||
hi Number guifg=#B4B4B9 ctermfg=249 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi link Float Number
|
||||
hi Identifier guifg=#99A4BC ctermfg=248 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi Function guifg=#FFC552 ctermfg=221 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi Statement guifg=#99A4BC ctermfg=248 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi Conditional guifg=#FFC552 ctermfg=221 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi link Repeat Statement
|
||||
hi link Label Statement
|
||||
hi Operator guifg=#FF761A ctermfg=208 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi Keyword guifg=#FFC552 ctermfg=221 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi link Exception Statement
|
||||
hi PreProc guifg=#cfc1b2 ctermfg=181 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi link Include PreProc
|
||||
hi link Define PreProc
|
||||
hi link Macro PreProc
|
||||
hi link PreCondit PreProc
|
||||
hi Type guifg=#DFDFE5 ctermfg=254 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi link StorageClass Type
|
||||
hi link Structure Type
|
||||
hi link Typedef Type
|
||||
hi Special guifg=#FF761A ctermfg=208 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi link SpecialChar Special
|
||||
hi link Tag Special
|
||||
hi Delimiter guifg=#DFDFE5 ctermfg=254 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi link SpecialComment Special
|
||||
hi link Debug Special
|
||||
hi Underlined guifg=#99A4BC ctermfg=248 guibg=NONE ctermbg=NONE gui=underline cterm=underline
|
||||
hi Todo guifg=#020221 ctermfg=0 guibg=#cfc1b2 ctermbg=181 gui=Italic cterm=Italic
|
||||
hi QuickFixLine guifg=#BFDAFF ctermfg=153 guibg=#36363A ctermbg=237 gui=NONE cterm=NONE
|
||||
hi Bold guifg=NONE ctermfg=NONE guibg=NONE ctermbg=NONE gui=Bold cterm=Bold
|
||||
hi Italic guifg=NONE ctermfg=NONE guibg=NONE ctermbg=NONE gui=Italic cterm=Italic
|
||||
hi IndentBlanklineChar guifg=#36363A ctermfg=237 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi IndentBlanklineIndent1 guifg=#36363A ctermfg=237 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi IndentBlanklineIndent2 guifg=#4F4F59 ctermfg=239 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi BufTabLineCurrent guifg=#B4B4B9 ctermfg=249 guibg=#787882 ctermbg=243 gui=NONE cterm=NONE
|
||||
hi BufTabLineActive guifg=#DFDFE5 ctermfg=254 guibg=#36363A ctermbg=237 gui=NONE cterm=NONE
|
||||
hi BufTabLineHidden guifg=#787882 ctermfg=243 guibg=#36363A ctermbg=237 gui=NONE cterm=NONE
|
||||
hi BufTabLineFill guifg=NONE ctermfg=NONE guibg=#212127 ctermbg=235 gui=NONE cterm=NONE
|
||||
hi CleverFDefaultLabel guifg=#BFDAFF ctermfg=153 guibg=NONE ctermbg=NONE gui=underline cterm=underline
|
||||
hi cPreCondit guifg=#BFDAFF ctermfg=153 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi link cDefine Define
|
||||
hi cStructure guifg=#99A4BC ctermfg=248 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi link cStorageClass StorageClass
|
||||
hi link cType Type
|
||||
hi cCustomParen guifg=#FF761A ctermfg=208 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi cConditional guifg=#FFC552 ctermfg=221 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi cCustomFunc guifg=#99A4BC ctermfg=248 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi cStatement guifg=#FFC552 ctermfg=221 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi cppSTLnamespace guifg=#C8D0E3 ctermfg=252 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi cppAccess guifg=#DFDFE5 ctermfg=254 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi cAnsiFunction guifg=#cfc1b2 ctermfg=181 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi cRepeat guifg=#FFC552 ctermfg=221 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi cSpecial guifg=#C8D0E3 ctermfg=252 guibg=NONE ctermbg=NONE gui=Bold cterm=Bold
|
||||
hi cssVendor guifg=#cfc1b2 ctermfg=181 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi cssTagName guifg=#99A4BC ctermfg=248 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi cssSelectorOp2 guifg=#FFC552 ctermfg=221 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi cssAttrComma guifg=#B4B4B9 ctermfg=249 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi link cssFunction Function
|
||||
hi cssIdentifier guifg=#B4B4B9 ctermfg=249 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi cssInclude guifg=#B4B4B9 ctermfg=249 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi cssIncludeKeyword guifg=#cfc1b2 ctermfg=181 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi cssImportant guifg=#FF3600 ctermfg=202 guibg=NONE ctermbg=NONE gui=Bold cterm=Bold
|
||||
hi link cssBraces Delimiter
|
||||
hi cssAttributeSelector guifg=#B4B4B9 ctermfg=249 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi cssMediaType guifg=#FFC552 ctermfg=221 guibg=NONE ctermbg=NONE gui=Italic cterm=Italic
|
||||
hi cssMediaKeyword guifg=#FFC552 ctermfg=221 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi cssFontDescriptor guifg=#cfc1b2 ctermfg=181 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi cssClassName guifg=#B4B4B9 ctermfg=249 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi cssClassNameDot guifg=#FFC552 ctermfg=221 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi cssProp guifg=#B4B4B9 ctermfg=249 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi cssAttr guifg=#DFDFE5 ctermfg=254 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi cssNoise guifg=#DFDFE5 ctermfg=254 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi cssPseudoClass guifg=#DFDFE5 ctermfg=254 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi cssAtRuleLogical guifg=#FF761A ctermfg=208 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi Done guifg=#718E3F ctermfg=65 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi Partial guifg=#FFC552 ctermfg=221 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi link diffAdded DiffAdd
|
||||
hi link diffRemoved DiffDelete
|
||||
hi link diffFile Title
|
||||
hi diffLine guifg=#C8D0E3 ctermfg=252 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi diffSubname guifg=#DFDFE5 ctermfg=254 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi dockercomposeKeywords guifg=#99A4BC ctermfg=248 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi link elmTypeDef Type
|
||||
hi elmType guifg=#DFDFE5 ctermfg=254 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi elmTopLevelDecl guifg=#cfc1b2 ctermfg=181 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi link elmAlias Identifier
|
||||
hi fugitiveSymbolicRef guifg=#99A4BC ctermfg=248 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi fugitiveHeader guifg=#FFC552 ctermfg=221 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi fugitiveHunk guifg=#B4B4B9 ctermfg=249 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi fugitiveModifier guifg=#FF761A ctermfg=208 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi fzf1 guifg=#FFC552 ctermfg=221 guibg=#36363A ctermbg=237 gui=NONE cterm=NONE
|
||||
hi fzf2 guifg=#FF761A ctermfg=208 guibg=#36363A ctermbg=237 gui=NONE cterm=NONE
|
||||
hi fzf3 guifg=#FF761A ctermfg=208 guibg=#36363A ctermbg=237 gui=NONE cterm=NONE
|
||||
hi gitcommitSummary guifg=#B4B4B9 ctermfg=249 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi gitcommitBranch guifg=#B4B4B9 ctermfg=249 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi gitcommitDiscardedType guifg=#99A4BC ctermfg=248 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi gitcommitSelectedType guifg=#718E3F ctermfg=65 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi gitcommitDiscardedFile guifg=#DFDFE5 ctermfg=254 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi gitcommitSelectedFile guifg=#B4B4B9 ctermfg=249 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi gitconfigSection guifg=#FFC552 ctermfg=221 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi gitconfigVariable guifg=#99A4BC ctermfg=248 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi GitSignsAdd guifg=#718E3F ctermfg=65 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi GitSignsChange guifg=#FFC552 ctermfg=221 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi GitSignsDelete guifg=#FF3600 ctermfg=202 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi GitSignsChangeDelete guifg=#FF761A ctermfg=208 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi goLabel guifg=#FFC552 ctermfg=221 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi goRepeat guifg=#FFC552 ctermfg=221 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi goBuiltins guifg=#FFC552 ctermfg=221 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi goVar guifg=#99A4BC ctermfg=248 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi goPackage guifg=#cfc1b2 ctermfg=181 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi link goImport goPackage
|
||||
hi graphqlVariable guifg=#99A4BC ctermfg=248 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi graphqlStructure guifg=#cfc1b2 ctermfg=181 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi graphqlName guifg=#B4B4B9 ctermfg=249 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi graphqlKeyword guifg=#FFC552 ctermfg=221 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi graphqlOperator guifg=#FF761A ctermfg=208 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi helpHyperTextJump guifg=#99A4BC ctermfg=248 guibg=NONE ctermbg=NONE gui=underline cterm=underline
|
||||
hi helpStar guifg=#BFDAFF ctermfg=153 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi helpHeadline guifg=#FFC552 ctermfg=221 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi helpSectionDelim guifg=#cfc1b2 ctermfg=181 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi helpOption guifg=#cfc1b2 ctermfg=181 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi HighlightedyankRegion guifg=#F8F8FF ctermfg=15 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi htmlTag guifg=#B4B4B9 ctermfg=249 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi htmlEndTag guifg=#FFC552 ctermfg=221 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi htmlArg guifg=#99A4BC ctermfg=248 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi link htmlTagName Number
|
||||
hi htmlSpecialTagName guifg=#FFC552 ctermfg=221 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi htmlH1 guifg=#BFDAFF ctermfg=153 guibg=NONE ctermbg=NONE gui=Bold cterm=Bold
|
||||
hi htmlH2 guifg=#BFDAFF ctermfg=153 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi link htmlH3 htmlH2
|
||||
hi link htmlH4 htmlH2
|
||||
hi link htmlH5 htmlH2
|
||||
hi link htmlH6 htmlH2
|
||||
hi htmlTitle guifg=#B4B4B9 ctermfg=249 guibg=NONE ctermbg=NONE gui=Bold cterm=Bold
|
||||
hi htmlSpecialChar guifg=#cfc1b2 ctermfg=181 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi IndentGuidesOdd guifg=NONE ctermfg=NONE guibg=#36363A ctermbg=237 gui=NONE cterm=NONE
|
||||
hi IndentGuidesEven guifg=NONE ctermfg=NONE guibg=#212127 ctermbg=235 gui=NONE cterm=NONE
|
||||
hi javaRepeat guifg=#FFC552 ctermfg=221 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi link javaStatement javaRepeat
|
||||
hi javaScriptBraces guifg=#FF761A ctermfg=208 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi javaScriptNull guifg=#B4B4B9 ctermfg=249 guibg=NONE ctermbg=NONE gui=Italic cterm=Italic
|
||||
hi javaScriptGlobal guifg=#9F97CC ctermfg=140 guibg=NONE ctermbg=NONE gui=Bold cterm=Bold
|
||||
hi link jsBrackets Delimiter
|
||||
hi link jsClassBraces jsBrackets
|
||||
hi link jsBraces jsBrackets
|
||||
hi link jsObjectBraces jsBrackets
|
||||
hi link jsParens jsBrackets
|
||||
hi jsObjectKey guifg=#99A4BC ctermfg=248 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi link jsFuncBraces jsBrackets
|
||||
hi link jsFuncParens jsBrackets
|
||||
hi link jsIfElseBraces jsBrackets
|
||||
hi jsFuncArgs guifg=#99A4BC ctermfg=248 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi jsExtendsKeyword guifg=#FFC552 ctermfg=221 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi link jsArrowFunction Operator
|
||||
hi jsFunction guifg=#FFC552 ctermfg=221 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi link jsRepeat jsFunction
|
||||
hi jsReturn guifg=#FFC552 ctermfg=221 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi jsClassDefinition guifg=#B4B4B9 ctermfg=249 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi jsClassProperty guifg=#B4B4B9 ctermfg=249 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi jsClassKeyword guifg=#FFC552 ctermfg=221 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi jsClassFuncName guifg=#B4B4B9 ctermfg=249 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi jsFuncName guifg=#B4B4B9 ctermfg=249 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi jsNull guifg=#B4B4B9 ctermfg=249 guibg=NONE ctermbg=NONE gui=Italic cterm=Italic
|
||||
hi link jsStorageClass StorageClass
|
||||
hi jsObjectSeparator guifg=#B4B4B9 ctermfg=249 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi jsObjectValue guifg=#99A4BC ctermfg=248 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi jsExportDefault guifg=#99A4BC ctermfg=248 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi jsRegexpCharClass guifg=#FF761A ctermfg=208 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi jsTemplateBraces guifg=#FF761A ctermfg=208 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi jsThis guifg=#99A4BC ctermfg=248 guibg=NONE ctermbg=NONE gui=Bold cterm=Bold
|
||||
hi jsFuncCall guifg=#cfc1b2 ctermfg=181 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi jsObjectProp guifg=#B4B4B9 ctermfg=249 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi jsConditional guifg=#FFC552 ctermfg=221 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi jsVariableDef guifg=#99A4BC ctermfg=248 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi jsFuncBlock guifg=#F8F8FF ctermfg=15 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi jsTry guifg=#FFC552 ctermfg=221 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi link jsCatch jsTry
|
||||
hi jsTryCatchBraces guifg=#FF761A ctermfg=208 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi jsGlobalObjects guifg=#9F97CC ctermfg=140 guibg=NONE ctermbg=NONE gui=Bold cterm=Bold
|
||||
hi jsParen guifg=#99A4BC ctermfg=248 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi link jsParenCatch jsParen
|
||||
hi link jsParenIfElse jsParen
|
||||
hi jsAsyncKeyword guifg=#cfc1b2 ctermfg=181 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi link jsForAwait jsAsyncKeyword
|
||||
hi jsGlobalNodeObjects guifg=#cfc1b2 ctermfg=181 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi jsonBoolean guifg=#FF3600 ctermfg=202 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi link jsonKeywordMatch Delimiter
|
||||
hi link xmlEqual Operator
|
||||
hi xmlEndTag guifg=#99A4BC ctermfg=248 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi xmlTagN guifg=#99A4BC ctermfg=248 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi xmlTagName guifg=#C8D0E3 ctermfg=252 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi LspDiagnosticsDefaultError guifg=#a82400 ctermfg=124 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi LspDiagnosticsDefaultWarning guifg=#c99c40 ctermfg=179 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi LspDiagnosticsDefaultInformation guifg=#787882 ctermfg=243 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi LspDiagnosticsDefaultHint guifg=#a1968a ctermfg=246 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi LspReferenceRead guifg=NONE ctermfg=NONE guibg=NONE ctermbg=NONE gui=underline cterm=underline
|
||||
hi LspReferenceText guifg=NONE ctermfg=NONE guibg=NONE ctermbg=NONE gui=underline cterm=underline
|
||||
hi LspReferenceWrite guifg=NONE ctermfg=NONE guibg=NONE ctermbg=NONE gui=underline cterm=underline
|
||||
hi LspDiagnosticsVirtualTextError guifg=#a82400 ctermfg=124 guibg=NONE ctermbg=NONE gui=Italic cterm=Italic
|
||||
hi LspDiagnosticsVirtualTextWarning guifg=#c99c40 ctermfg=179 guibg=NONE ctermbg=NONE gui=Italic cterm=Italic
|
||||
hi LspDiagnosticsVirtualTextHint guifg=#a1968a ctermfg=246 guibg=NONE ctermbg=NONE gui=Italic cterm=Italic
|
||||
hi LspDiagnosticsVirtualTextInformation guifg=#787882 ctermfg=243 guibg=NONE ctermbg=NONE gui=Italic cterm=Italic
|
||||
hi LspDiagnosticsUnderlineError guifg=NONE ctermfg=NONE guibg=NONE ctermbg=NONE gui=undercurl cterm=undercurl guisp=#a82400
|
||||
hi LspDiagnosticsUnderlineWarning guifg=NONE ctermfg=NONE guibg=NONE ctermbg=NONE gui=undercurl cterm=undercurl guisp=#c99c40
|
||||
hi LspDiagnosticsUnderlineHint guifg=NONE ctermfg=NONE guibg=NONE ctermbg=NONE gui=undercurl cterm=undercurl guisp=#a1968a
|
||||
hi LspDiagnosticsUnderlineInformation guifg=NONE ctermfg=NONE guibg=NONE ctermbg=NONE gui=undercurl cterm=undercurl guisp=#787882
|
||||
hi luaFuncKeyword guifg=#FFC552 ctermfg=221 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi luaFuncTable guifg=#B4B4B9 ctermfg=249 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi luaFuncName guifg=#B4B4B9 ctermfg=249 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi luaFuncCall guifg=#B4B4B9 ctermfg=249 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi luaFuncArgName guifg=#99A4BC ctermfg=248 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi luaCond guifg=#FFC552 ctermfg=221 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi link luaStatement luaCond
|
||||
hi link luaLocal Constant
|
||||
hi link luaFuncParens Delimiter
|
||||
hi link luaParens luaFuncParens
|
||||
hi link luaBraces luaFuncParens
|
||||
hi luaDocTag guifg=#cfc1b2 ctermfg=181 guibg=NONE ctermbg=NONE gui=Italic cterm=Italic
|
||||
hi link markdownHeadingDelimiter Delimiter
|
||||
hi link markdownItemDelimiter Delimiter
|
||||
hi markdownInlineDelimiter guifg=#cfc1b2 ctermfg=181 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi link markdownOrderedListMarker Delimiter
|
||||
hi link markdownListMarker Delimiter
|
||||
hi link markdownLinkTextDelimiter Delimiter
|
||||
hi markdownUrl guifg=#99A4BC ctermfg=248 guibg=NONE ctermbg=NONE gui=underline cterm=underline
|
||||
hi markdownCodeDelimiter guifg=#FF761A ctermfg=208 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi markdownCode guifg=#878791 ctermfg=102 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi link markdownError SpellBad
|
||||
hi markdownXmlElement guifg=#787882 ctermfg=243 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi link mkdLink Underlined
|
||||
hi mkdURL guifg=#99A4BC ctermfg=248 guibg=NONE ctermbg=NONE gui=underline cterm=underline
|
||||
hi mkdInlineURL guifg=#99A4BC ctermfg=248 guibg=NONE ctermbg=NONE gui=underline cterm=underline
|
||||
hi mkdBold guifg=NONE ctermfg=NONE guibg=NONE ctermbg=NONE gui=Bold cterm=Bold
|
||||
hi htmlBold guifg=NONE ctermfg=NONE guibg=NONE ctermbg=NONE gui=Bold cterm=Bold
|
||||
hi link mkdListItem Delimiter
|
||||
hi htmlItalic guifg=NONE ctermfg=NONE guibg=NONE ctermbg=NONE gui=Italic cterm=Italic
|
||||
hi mkdCode guifg=#878791 ctermfg=102 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi mkdCodeDelimiter guifg=#FF761A ctermfg=208 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi link mkdHeading Delimiter
|
||||
hi healthSuccess guifg=#020221 ctermfg=0 guibg=#718E3F ctermbg=65 gui=NONE cterm=NONE
|
||||
hi healthError guifg=#020221 ctermfg=0 guibg=#FF3600 ctermbg=202 gui=NONE cterm=NONE
|
||||
hi NormalFloat guifg=NONE ctermfg=NONE guibg=#2F2F3A ctermbg=236 gui=NONE cterm=NONE
|
||||
hi NormalFloatAlt guifg=NONE ctermfg=NONE guibg=#242430 ctermbg=235 gui=NONE cterm=NONE
|
||||
hi NERDTreeCWD guifg=#FFC552 ctermfg=221 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi NERDTreeOpenable guifg=#C8D0E3 ctermfg=252 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi NERDTreeClosable guifg=#C8D0E3 ctermfg=252 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi NERDTreeFlags guifg=#C8D0E3 ctermfg=252 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi NERDTreeGitStatusDirDirty guifg=#FF3600 ctermfg=202 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi netrwClassify guifg=#B4B4B9 ctermfg=249 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi CmpItemAbbr guifg=#878791 ctermfg=102 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi CmpItemAbbrDeprecated guifg=#cfc1b2 ctermfg=181 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi CmpItemAbbrMatch guifg=#DFDFE5 ctermfg=254 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi CmpItemAbbrMatchFuzzy guifg=#DFDFE5 ctermfg=254 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi CmpItemKind guifg=#787882 ctermfg=243 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi CmpItemMenu guifg=#99A4BC ctermfg=248 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi NvimTreeFolderName guifg=#99A4BC ctermfg=248 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi NvimTreeRootFolder guifg=#C8D0E3 ctermfg=252 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi NvimTreeFolderIcon guifg=#C8D0E3 ctermfg=252 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi NvimTreeEmptyFolderName guifg=#99A4BC ctermfg=248 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi NvimTreeOpenedFolderName guifg=#DFDFE5 ctermfg=254 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi NvimTreeOpenedFile guifg=#BFDAFF ctermfg=153 guibg=NONE ctermbg=NONE gui=underline cterm=underline
|
||||
hi NvimTreeGitDirty guifg=#FF761A ctermfg=208 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi NvimTreeGitStaged guifg=#FF761A ctermfg=208 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi NvimTreeGitMerge guifg=#FFC552 ctermfg=221 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi NvimTreeGitRenamed guifg=#FFC552 ctermfg=221 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi NvimTreeGitNew guifg=#718E3F ctermfg=65 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi NvimTreeGitDeleted guifg=#FF3600 ctermfg=202 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi phpCommentTitle guifg=#878791 ctermfg=102 guibg=NONE ctermbg=NONE gui=Italic cterm=Italic
|
||||
hi phpDocTags guifg=#a1968a ctermfg=246 guibg=NONE ctermbg=NONE gui=Italic cterm=Italic
|
||||
hi phpDocCustomTags guifg=#BFDAFF ctermfg=153 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi link phpDocNamespaceSeparator Comment
|
||||
hi phpUseNamespaceSeparator guifg=#DFDFE5 ctermfg=254 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi link phpBoolean Boolean
|
||||
hi phpStorageClass guifg=#FF761A ctermfg=208 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi phpClasses guifg=#DFDFE5 ctermfg=254 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi phpStaticClasses guifg=#B4B4B9 ctermfg=249 guibg=NONE ctermbg=NONE gui=Bold cterm=Bold
|
||||
hi phpClassImplements guifg=#B4B4B9 ctermfg=249 guibg=NONE ctermbg=NONE gui=Italic cterm=Italic
|
||||
hi link phpClassExtends phpClassImplements
|
||||
hi phpStructure guifg=#99A4BC ctermfg=248 guibg=NONE ctermbg=NONE gui=Bold cterm=Bold
|
||||
hi phpMethod guifg=#B4B4B9 ctermfg=249 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi phpFunctions guifg=#cfc1b2 ctermfg=181 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi phpRepeat guifg=#FFC552 ctermfg=221 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi link phpKeyword Keyword
|
||||
hi link phpType Type
|
||||
hi link phpParent Delimiter
|
||||
hi phpMemberSelector guifg=#DFDFE5 ctermfg=254 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi link phpOperator Operator
|
||||
hi phpVarSelector guifg=#DFDFE5 ctermfg=254 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi link phpIdentifier Identifier
|
||||
hi phpStringDelimiter guifg=#DFDFE5 ctermfg=254 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi phpSuperglobals guifg=#9F97CC ctermfg=140 guibg=NONE ctermbg=NONE gui=Bold cterm=Bold
|
||||
hi phpSpecialChar guifg=#99A4BC ctermfg=248 guibg=NONE ctermbg=NONE gui=Bold cterm=Bold
|
||||
hi link phpNullValue Boolean
|
||||
hi plugDeleted guifg=#FF3600 ctermfg=202 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi plugBracket guifg=#FF761A ctermfg=208 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi plug1 guifg=#cfc1b2 ctermfg=181 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi plug2 guifg=#99A4BC ctermfg=248 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi pythonStatement guifg=#FFC552 ctermfg=221 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi pythonRepeat guifg=#FFC552 ctermfg=221 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi pythonFunction guifg=#B4B4B9 ctermfg=249 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi pythonExClass guifg=#cfc1b2 ctermfg=181 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi pythonBuiltinObj guifg=#FFC552 ctermfg=221 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi pythonDot guifg=#FF761A ctermfg=208 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi pythonBuiltinFunc guifg=#cfc1b2 ctermfg=181 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi link pythonNone Boolean
|
||||
hi rstSections guifg=#BFDAFF ctermfg=153 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi rstCodeBlock guifg=#878791 ctermfg=102 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi rstDirective guifg=#FF761A ctermfg=208 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi rstHyperlinkTarget guifg=#99A4BC ctermfg=248 guibg=NONE ctermbg=NONE gui=underline cterm=underline
|
||||
hi rstExDirective guifg=#99A4BC ctermfg=248 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi rubyClass guifg=#DFDFE5 ctermfg=254 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi link rubyClassName Normal
|
||||
hi rubyModule guifg=#DFDFE5 ctermfg=254 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi link rubyModuleName Normal
|
||||
hi rubyDefine guifg=#FFC552 ctermfg=221 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi rubyFunction guifg=#B4B4B9 ctermfg=249 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi rubyControl guifg=#FFC552 ctermfg=221 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi rubyConstant guifg=#C8D0E3 ctermfg=252 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi rubyGlobalVariable guifg=#9F97CC ctermfg=140 guibg=NONE ctermbg=NONE gui=Bold cterm=Bold
|
||||
hi rubySymbol guifg=#99A4BC ctermfg=248 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi link rubyArrayDelimiter Delimiter
|
||||
hi rubyBlockParameterList guifg=#99A4BC ctermfg=248 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi link rubyCurlyBlockDelimiter Delimiter
|
||||
hi rubyDoBlock guifg=#FFC552 ctermfg=221 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi rubyLocalVariableOrMethod guifg=#99A4BC ctermfg=248 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi rubyMethodBlock guifg=#cfc1b2 ctermfg=181 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi rubyHeredocDelimiter guifg=#FF761A ctermfg=208 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi rubyCurlyBlock guifg=#FF761A ctermfg=208 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi link shCaseBar Operator
|
||||
hi link shQuote Delimiter
|
||||
hi shFunction guifg=#B4B4B9 ctermfg=249 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi link shLoop Function
|
||||
hi link shTestOpr Operator
|
||||
hi shVariable guifg=#99A4BC ctermfg=248 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi bashSpecialVariables guifg=#99A4BC ctermfg=248 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi link shSnglCase Delimiter
|
||||
hi shSetList guifg=#C8D0E3 ctermfg=252 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi shStatement guifg=#B4B4B9 ctermfg=249 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi link shSet shStatement
|
||||
hi Sneak guifg=#F8F8FF ctermfg=15 guibg=#2D1078 ctermbg=4 gui=NONE cterm=NONE
|
||||
hi SneakLabel guifg=#F8F8FF ctermfg=15 guibg=#2D1078 ctermbg=4 gui=NONE cterm=NONE
|
||||
hi SneakScope guifg=#F8F8FF ctermfg=15 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi link sqlStatement Function
|
||||
hi sqlKeyword guifg=#cfc1b2 ctermfg=181 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi link sqlSpecial Number
|
||||
hi sqlType guifg=#99A4BC ctermfg=248 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi link sqlFunction Title
|
||||
hi link mysqlKeyword sqlKeyword
|
||||
hi link mysqlOperator Operator
|
||||
hi link mysqlFunction sqlType
|
||||
hi link mysqlStatement sqlStatement
|
||||
hi link mysqlType sqlType
|
||||
hi link Quote Delimiter
|
||||
hi sshconfigKeyword guifg=#99A4BC ctermfg=248 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi sshconfigMatch guifg=#99A4BC ctermfg=248 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi sshconfigYesNo guifg=#FF3600 ctermfg=202 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi sshconfigLogLevel guifg=#cfc1b2 ctermfg=181 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi StartifySlash guifg=#787882 ctermfg=243 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi StartifyPath guifg=#787882 ctermfg=243 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi StartifyHeader guifg=#5521D9 ctermfg=56 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi StartifyFile guifg=#B4B4B9 ctermfg=249 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi StartifySection guifg=#FFC552 ctermfg=221 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi StartifyNumber guifg=#99A4BC ctermfg=248 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi TagbarComment guifg=#36363A ctermfg=237 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi TagbarKind guifg=#99A4BC ctermfg=248 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi TagbarNestedKind guifg=#99A4BC ctermfg=248 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi TagbarScope guifg=#cfc1b2 ctermfg=181 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi TagbarType guifg=#DFDFE5 ctermfg=254 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi TagbarSignature guifg=#B4B4B9 ctermfg=249 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi TagbarPseudoID guifg=#B4B4B9 ctermfg=249 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi TagbarFoldIcon guifg=#787882 ctermfg=243 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi TagbarHighlight guifg=#B4B4B9 ctermfg=249 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi TagbarVisibilityPublic guifg=#718E3F ctermfg=65 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi TagbarVisibilityProtected guifg=#FF761A ctermfg=208 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi TagbarVisibilityPrivate guifg=#FF3600 ctermfg=202 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi tmuxCmds guifg=#FFC552 ctermfg=221 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi tmuxOptsSet guifg=#99A4BC ctermfg=248 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi tmuxOptions guifg=#FF761A ctermfg=208 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi tmuxOptsSetw guifg=#99A4BC ctermfg=248 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi link TSKeyword Keyword
|
||||
hi link TSVariable Identifier
|
||||
hi TSMethod guifg=#B4B4B9 ctermfg=249 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi link TSVariableBuiltin Type
|
||||
hi link TSFunction Keyword
|
||||
hi link TSOperator Operator
|
||||
hi TSConstructor guifg=#B4B4B9 ctermfg=249 guibg=NONE ctermbg=NONE gui=Bold cterm=Bold
|
||||
hi link TSException Keyword
|
||||
hi link TSConstant Constant
|
||||
hi link TSConstBuiltin Boolean
|
||||
hi TSError guifg=#FFC552 ctermfg=221 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi link twigVarDelim Delimiter
|
||||
hi link twigTagDelim Delimiter
|
||||
hi twigString guifg=#DFDFE5 ctermfg=254 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi twigOperator guifg=#FF761A ctermfg=208 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi twigTagBlock guifg=#FFC552 ctermfg=221 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi htmlLink guifg=#99A4BC ctermfg=248 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi link twigVariable Identifier
|
||||
hi twigFilter guifg=#cfc1b2 ctermfg=181 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi snipSnippetHeaderKeyword guifg=#FFC552 ctermfg=221 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi link snipSnippetFooterKeyword snipSnippetHeaderKeyword
|
||||
hi link snipTabStop Identifier
|
||||
hi snipTabStopDefault guifg=#99A4BC ctermfg=248 guibg=NONE ctermbg=NONE gui=Italic cterm=Italic
|
||||
hi link snipMirror snipTabStop
|
||||
hi link snipSnippetTrigger String
|
||||
hi link snipSnippetDocContextString Comment
|
||||
hi DbgBreakptLine guifg=NONE ctermfg=NONE guibg=#031630 ctermbg=233 gui=NONE cterm=NONE
|
||||
hi DbgBreakptSign guifg=#031630 ctermfg=233 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi DbgCurrentLine guifg=NONE ctermfg=NONE guibg=#300E03 ctermbg=233 gui=NONE cterm=NONE
|
||||
hi DbgCurrentSign guifg=#300E03 ctermfg=233 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi GitGutterAdd guifg=#718E3F ctermfg=65 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi GitGutterChange guifg=#FFC552 ctermfg=221 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi GitGutterDelete guifg=#FF3600 ctermfg=202 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi GitGutterChangeDelete guifg=#FF761A ctermfg=208 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi SignatureMarkText guifg=#99A4BC ctermfg=248 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi Terminal guifg=#B4B4B9 ctermfg=249 guibg=#020221 ctermbg=0 gui=NONE cterm=NONE
|
||||
hi titleEntry guifg=#FFC552 ctermfg=221 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi vimCommentTitle guifg=#DFDFE5 ctermfg=254 guibg=NONE ctermbg=NONE gui=Italic cterm=Italic
|
||||
hi vimCommand guifg=#cfc1b2 ctermfg=181 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi vimVar guifg=#99A4BC ctermfg=248 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi vimLet guifg=#FFC552 ctermfg=221 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi vimNotFunc guifg=#FFC552 ctermfg=221 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi vimIsCommand guifg=#FFC552 ctermfg=221 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi link vimOperParen Delimiter
|
||||
hi vimFuncVar guifg=#99A4BC ctermfg=248 guibg=NONE ctermbg=NONE gui=Bold cterm=Bold
|
||||
hi vimFuncName guifg=#B4B4B9 ctermfg=249 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi vimAutoEvent guifg=#FF3600 ctermfg=202 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi vimMap guifg=#99A4BC ctermfg=248 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi vimGroup guifg=#99A4BC ctermfg=248 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi vimHiTerm guifg=#99A4BC ctermfg=248 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi vimSetSep guifg=#B4B4B9 ctermfg=249 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi link vimHighlight vimLet
|
||||
hi vimSetEqual guifg=#FF761A ctermfg=208 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi vimNotation guifg=#B4B4B9 ctermfg=249 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi vimMapLhs guifg=#cfc1b2 ctermfg=181 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi vimMapRhs guifg=#C8D0E3 ctermfg=252 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi link VimwikiLink Underlined
|
||||
hi link VimwikiHeaderChar Delimiter
|
||||
hi VimwikiHeader1 guifg=#BFDAFF ctermfg=153 guibg=NONE ctermbg=NONE gui=Bold cterm=Bold
|
||||
hi VimwikiHeader2 guifg=#BFDAFF ctermfg=153 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi link VimwikiHeader3 VimwikiHeader2
|
||||
hi link VimwikiHeader4 VimwikiHeader2
|
||||
hi link VimwikiHeader5 VimwikiHeader2
|
||||
hi link VimwikiHeader6 VimwikiHeader2
|
||||
hi link VimwikiList Delimiter
|
||||
hi VimwikiPre guifg=#878791 ctermfg=102 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi VimwikiCode guifg=#878791 ctermfg=102 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi VimwikiCodeChar guifg=#FF761A ctermfg=208 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi VimwikiMarkers guifg=#cfc1b2 ctermfg=181 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi VimwikiBold guifg=NONE ctermfg=NONE guibg=NONE ctermbg=NONE gui=Bold cterm=Bold
|
||||
hi VimwikiItalic guifg=NONE ctermfg=NONE guibg=NONE ctermbg=NONE gui=Italic cterm=Italic
|
||||
hi VistaTag guifg=#B4B4B9 ctermfg=249 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi VistaPrefix guifg=#57575E ctermfg=240 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi xmlAttrib guifg=#99A4BC ctermfg=248 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi xmlTag guifg=#B4B4B9 ctermfg=249 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi xmlProcessingDelim guifg=#FF761A ctermfg=208 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi yamlFlowStringDelimiter guifg=#B4B4B9 ctermfg=249 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi yamlBlockCollectionItemStart guifg=#FF761A ctermfg=208 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi yamlBlockMappingKey guifg=#99A4BC ctermfg=248 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi yamlFlowMappingKey guifg=#B4B4B9 ctermfg=249 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi link yamlFlowIndicator Delimiter
|
||||
hi link yamlKeyValueDelimiter Delimiter
|
||||
hi yamlNull guifg=#B4B4B9 ctermfg=249 guibg=NONE ctermbg=NONE gui=Italic cterm=Italic
|
||||
hi link yamlBool Number
|
||||
hi yamlPlainScalar guifg=#B4B4B9 ctermfg=249 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi zshCommands guifg=#FFC552 ctermfg=221 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi link zshBrackets Delimiter
|
||||
hi zshOptStart guifg=#FF761A ctermfg=208 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi zshVariableDef guifg=#99A4BC ctermfg=248 guibg=NONE ctermbg=NONE gui=NONE cterm=NONE
|
||||
hi link zshTypes Type
|
||||
hi link zshKeyword Keyword
|
||||
hi link zshStringDelimiter Delimiter
|
||||
hi link zshDelimiter Delimiter
|
||||
hi link zshParentheses Delimiter
|
||||
|
||||
if exists('*term_setansicolors')
|
||||
let g:terminal_ansi_colors = repeat([0], 16)
|
||||
|
||||
let g:terminal_ansi_colors[0] = '#000004'
|
||||
let g:terminal_ansi_colors[1] = '#FF3600'
|
||||
let g:terminal_ansi_colors[2] = '#718E3F'
|
||||
let g:terminal_ansi_colors[3] = '#FFC552'
|
||||
let g:terminal_ansi_colors[4] = '#635196'
|
||||
let g:terminal_ansi_colors[5] = '#FF761A'
|
||||
let g:terminal_ansi_colors[6] = '#34bfa4'
|
||||
let g:terminal_ansi_colors[7] = '#B4B4B9'
|
||||
let g:terminal_ansi_colors[8] = '#020221'
|
||||
let g:terminal_ansi_colors[9] = '#FF8E78'
|
||||
let g:terminal_ansi_colors[10] = '#B1BF75'
|
||||
let g:terminal_ansi_colors[11] = '#FFD392'
|
||||
let g:terminal_ansi_colors[12] = '#99A4BC'
|
||||
let g:terminal_ansi_colors[13] = '#FFB07B'
|
||||
let g:terminal_ansi_colors[14] = '#8BCCBF'
|
||||
let g:terminal_ansi_colors[15] = '#F8F8FF'
|
||||
endif
|
||||
|
||||
if has('nvim')
|
||||
let g:terminal_color_0 = '#000004'
|
||||
let g:terminal_color_1 = '#FF3600'
|
||||
let g:terminal_color_2 = '#718E3F'
|
||||
let g:terminal_color_3 = '#FFC552'
|
||||
let g:terminal_color_4 = '#635196'
|
||||
let g:terminal_color_5 = '#FF761A'
|
||||
let g:terminal_color_6 = '#34bfa4'
|
||||
let g:terminal_color_7 = '#B4B4B9'
|
||||
let g:terminal_color_8 = '#020221'
|
||||
let g:terminal_color_9 = '#FF8E78'
|
||||
let g:terminal_color_10 = '#B1BF75'
|
||||
let g:terminal_color_11 = '#FFD392'
|
||||
let g:terminal_color_12 = '#99A4BC'
|
||||
let g:terminal_color_13 = '#FFB07B'
|
||||
let g:terminal_color_14 = '#8BCCBF'
|
||||
let g:terminal_color_15 = '#F8F8FF'
|
||||
endif
|
||||
|
||||
" ===================================
|
||||
" Generated by Estilo 1.5.0
|
||||
" https://github.com/jacoborus/estilo
|
||||
" ===================================
|
107
.config/nvim/pack/colors/falcon/corpus/README.rst
Executable file
107
.config/nvim/pack/colors/falcon/corpus/README.rst
Executable file
|
@ -0,0 +1,107 @@
|
|||
digimarks
|
||||
=========
|
||||
|
||||
|PyPI version| |PyPI license| |Code health| |Codacy|
|
||||
|
||||
Simple bookmarking service, using a SQLite database to store bookmarks, supporting tags and automatic title fetching.
|
||||
|
||||
|
||||
Installation
|
||||
------------
|
||||
|
||||
From PyPI
|
||||
~~~~~~~~~
|
||||
|
||||
Assuming you already are inside a virtualenv:
|
||||
|
||||
.. code-block:: bash
|
||||
|
||||
pip install digimarks
|
||||
|
||||
|
||||
From Git
|
||||
~~~~~~~~
|
||||
|
||||
Create a new virtualenv (if you are not already in one) and install the
|
||||
necessary packages:
|
||||
|
||||
.. code-block:: bash
|
||||
|
||||
git clone https://github.com/aquatix/digimarks.git
|
||||
cd digimarks
|
||||
mkvirtualenv digimarks # or whatever project you are working on
|
||||
pip install -r requirements.txt
|
||||
|
||||
|
||||
Usage / example configuration
|
||||
-----------------------------
|
||||
|
||||
Copy ``settings.py`` from example_config to the parent directory and
|
||||
configure to your needs (*at the least* change the value of `SYSTEMKEY`).
|
||||
|
||||
Run digimarks as a service under nginx or apache and call the appropriate
|
||||
url's when wanted.
|
||||
|
||||
Url's are of the form https://marks.example.com/<userkey>/<action>
|
||||
|
||||
|
||||
Bookmarklet
|
||||
~~~~~~~~~~~
|
||||
|
||||
To easily save a link from your browser, open its bookmark manager and create a new bookmark with as url:
|
||||
|
||||
.. code-block:: javascript
|
||||
|
||||
javascript:location.href='http://marks.example.com/1234567890abcdef/add?url='+encodeURIComponent(location.href);
|
||||
|
||||
|
||||
Creating a new user
|
||||
-------------------
|
||||
|
||||
After having set up the ```settings.py``` as under Usage, you can add a new user, by going to this path on your digimarks server:
|
||||
|
||||
/<secretkey>/adduser
|
||||
|
||||
where `secretkey` is the value set in settings.SYSTEMKEY
|
||||
|
||||
digimarks will then redirect to the bookmarks overview page of the new user. Please remember the user key (the hash in the url), as it will not be visible otherwise in the interface.
|
||||
|
||||
If you for whatever reason would lose this user key, just either look on the console (or webserver logs) where the list of available user keys is printed on digimarks startup, or open bookmarks.db with a SQLite editor.
|
||||
|
||||
|
||||
Server configuration
|
||||
~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
* `vhost for Apache2.4`_
|
||||
* `uwsgi.ini`_
|
||||
|
||||
|
||||
What's new?
|
||||
-----------
|
||||
|
||||
See the `Changelog`_.
|
||||
|
||||
|
||||
Attributions
|
||||
------------
|
||||
|
||||
'M' favicon by `Freepik`_.
|
||||
|
||||
|
||||
.. _digimarks: https://github.com/aquatix/digimarks
|
||||
.. _webhook: https://en.wikipedia.org/wiki/Webhook
|
||||
.. |PyPI version| image:: https://img.shields.io/pypi/v/digimarks.svg
|
||||
:target: https://pypi.python.org/pypi/digimarks/
|
||||
.. |PyPI license| image:: https://img.shields.io/github/license/aquatix/digimarks.svg
|
||||
:target: https://pypi.python.org/pypi/digimarks/
|
||||
.. |Code health| image:: https://landscape.io/github/aquatix/digimarks/master/landscape.svg?style=flat
|
||||
:target: https://landscape.io/github/aquatix/digimarks/master
|
||||
:alt: Code Health
|
||||
.. |Codacy| image:: https://api.codacy.com/project/badge/Grade/9a34319d917b43219a29e59e9ac75e3b
|
||||
:alt: Codacy Badge
|
||||
:target: https://app.codacy.com/app/aquatix/digimarks?utm_source=github.com&utm_medium=referral&utm_content=aquatix/digimarks&utm_campaign=badger
|
||||
.. _hook settings: https://github.com/aquatix/digimarks/blob/master/example_config/examples.yaml
|
||||
.. _vhost for Apache2.4: https://github.com/aquatix/digimarks/blob/master/example_config/apache_vhost.conf
|
||||
.. _uwsgi.ini: https://github.com/aquatix/digimarks/blob/master/example_config/uwsgi.ini
|
||||
.. _Changelog: https://github.com/aquatix/digimarks/blob/master/CHANGELOG.md
|
||||
.. _Freepik: http://www.flaticon.com/free-icon/letter-m_2041
|
35
.config/nvim/pack/colors/falcon/corpus/bash.sh
Executable file
35
.config/nvim/pack/colors/falcon/corpus/bash.sh
Executable file
|
@ -0,0 +1,35 @@
|
|||
# Source global definitions
|
||||
if [ -f /etc/bashrc ]; then
|
||||
. /etc/bashrc
|
||||
fi
|
||||
#
|
||||
# aliases
|
||||
alias grpe=grep
|
||||
alias grep='grep --color --line-number'
|
||||
alias vim="vim -p"
|
||||
alias rebash="source ~/.bashrc"
|
||||
|
||||
alias install='sudo apt-get -y install'
|
||||
alias search='apt-cache search'
|
||||
alias purge='sudo apt-get purge'
|
||||
|
||||
export EDITOR=vim
|
||||
|
||||
# set up the prompt to the hostname
|
||||
shopt -s checkwinsize
|
||||
PS1="\e[1;35m[\w] --- \@ \d \n$>\[\e[0m\]"
|
||||
PS2="\e[1;35m->\[\e[0m\]"
|
||||
|
||||
#--------------------------------------------------
|
||||
# grabs some definitions from google
|
||||
#--------------------------------------------------
|
||||
define () {
|
||||
lynx -dump "http://www.google.com/search?hl=en&q=define%3A+${1}" | grep -m 25 -w "*" | sed 's/;/ -/g' | cut -d- -f5 > /tmp/templookup.txt
|
||||
if [[ -s /tmp/templookup.txt ]] ;then
|
||||
until ! read response
|
||||
do
|
||||
echo "${response}"
|
||||
done < /tmp/templookup.txt
|
||||
else
|
||||
echo "Sorry $USER, I can't find the term \"${1} \""
|
||||
fi
|
48
.config/nvim/pack/colors/falcon/corpus/c.c
Executable file
48
.config/nvim/pack/colors/falcon/corpus/c.c
Executable file
|
@ -0,0 +1,48 @@
|
|||
#include <stdio.h>
|
||||
|
||||
void quicksort(int *A, int len);
|
||||
|
||||
/**
|
||||
* Main starts here.
|
||||
*/
|
||||
int main (void) {
|
||||
int a[] = {4, 65, 2, -31, 0, 99, 2, 83, 782, 1};
|
||||
int n = sizeof a / sizeof a[0];
|
||||
|
||||
int i;
|
||||
for (i = 0; i < n; i++) {
|
||||
printf("%d ", a[i]);
|
||||
}
|
||||
printf("\n hello");
|
||||
|
||||
quicksort(a, n);
|
||||
|
||||
for (i = 0; i < n; i++) {
|
||||
printf("%d ", a[i]);
|
||||
}
|
||||
printf("\n");
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
// This is quicksort.
|
||||
void quicksort(int *A, int len) {
|
||||
if (len < 2) return;
|
||||
|
||||
int pivot = A[len / 2];
|
||||
|
||||
int i, j;
|
||||
for (i = 0, j = len - 1; ; i++, j--) {
|
||||
while (A[i] < pivot) i++;
|
||||
while (A[j] > pivot) j--;
|
||||
|
||||
if (i >= j) break;
|
||||
|
||||
int temp = A[i];
|
||||
A[i] = A[j];
|
||||
A[j] = temp;
|
||||
}
|
||||
|
||||
quicksort(A, i);
|
||||
quicksort(A + i, len - i);
|
||||
}
|
48
.config/nvim/pack/colors/falcon/corpus/clojure.clj
Executable file
48
.config/nvim/pack/colors/falcon/corpus/clojure.clj
Executable file
|
@ -0,0 +1,48 @@
|
|||
;; A comment!
|
||||
(defn qsort [L]
|
||||
(if (empty? L)
|
||||
'()
|
||||
(let [[pivot & L2] L]
|
||||
(lazy-cat (qsort (for [y L2 :when (< y pivot)] y))
|
||||
(list pivot)
|
||||
(qsort (for [y L2 :when (>= y pivot)] y))))))
|
||||
|
||||
(defn qsort3 [[pivot :as coll]]
|
||||
(when pivot
|
||||
(lazy-cat (qsort (filter #(< % pivot) coll))
|
||||
(filter #{pivot} coll)
|
||||
(qsort (filter #(> % pivot) coll)))))
|
||||
|
||||
(def bit-bucket-writer
|
||||
(proxy [java.io.Writer] []
|
||||
(write [buf] nil)
|
||||
(close [] nil)
|
||||
(flush [] nil)))
|
||||
|
||||
(defmacro noprint
|
||||
"Evaluates the given expressions with all printing to *out* silenced."
|
||||
[& forms]
|
||||
`(binding [*out* bit-bucket-writer]
|
||||
~@forms))
|
||||
|
||||
(noprint
|
||||
(println "Hello, nobody!"))
|
||||
|
||||
(defn run [nvecs nitems nthreads niters]
|
||||
(let [vec-refs (->> (range (* nvecs nitems)) (partition nitems) (map (comp ref vec)) vec)
|
||||
swap #(let [v1 (rand-int nvecs)
|
||||
v2 (rand-int nvecs)
|
||||
i1 (rand-int nitems)
|
||||
i2 (rand-int nitems)]
|
||||
(dosync
|
||||
(let [tmp (nth @(vec-refs v1) i1)]
|
||||
(alter (vec-refs v1) assoc i1 (nth @(vec-refs v2) i2))
|
||||
(alter (vec-refs v2) assoc i2 tmp))))
|
||||
report #(let [derefed (map deref vec-refs)]
|
||||
(prn derefed)
|
||||
(println "Distinct:" (->> derefed (apply concat) distinct count)))]
|
||||
(report)
|
||||
(dorun (apply pcalls (repeat nthreads #(dotimes [_ niters] (swap)))))
|
||||
(report)))
|
||||
|
||||
(run 100 10 10 100000)
|
73
.config/nvim/pack/colors/falcon/corpus/cpp.cpp
Executable file
73
.config/nvim/pack/colors/falcon/corpus/cpp.cpp
Executable file
|
@ -0,0 +1,73 @@
|
|||
/**
|
||||
* From: http://rosettacode.org/wiki/Sorting_algorithms/
|
||||
*/
|
||||
#include <iterator>
|
||||
#include <algorithm> // for std::partition
|
||||
#include <functional> // for std::less
|
||||
|
||||
// helper function for median of three
|
||||
template<typename T>
|
||||
T median(T t1, T t2, T t3)
|
||||
{
|
||||
if (t1 < t2)
|
||||
{
|
||||
if (t2 < t3)
|
||||
return t2;
|
||||
else if (t1 < t3)
|
||||
return t3;
|
||||
else
|
||||
return t1;
|
||||
}
|
||||
else
|
||||
{
|
||||
if (t1 < t3)
|
||||
return t1;
|
||||
else if (t2 < t3)
|
||||
return t3;
|
||||
else
|
||||
return t2;
|
||||
}
|
||||
}
|
||||
|
||||
// helper object to get <= from <
|
||||
template<typename Order> struct non_strict_op:
|
||||
public std::binary_function<typename Order::second_argument_type,
|
||||
typename Order::first_argument_type,
|
||||
bool>
|
||||
{
|
||||
non_strict_op(Order o): order(o) {}
|
||||
bool operator()(typename Order::second_argument_type arg1,
|
||||
typename Order::first_argument_type arg2) const
|
||||
{
|
||||
return !order(arg2, arg1);
|
||||
}
|
||||
private:
|
||||
Order order;
|
||||
};
|
||||
|
||||
template<typename Order> non_strict_op<Order> non_strict(Order o)
|
||||
{
|
||||
return non_strict_op<Order>(o);
|
||||
}
|
||||
|
||||
template<typename RandomAccessIterator,
|
||||
typename Order>
|
||||
void quicksort(RandomAccessIterator first, RandomAccessIterator last, Order order)
|
||||
{
|
||||
if (first != last && first+1 != last)
|
||||
{
|
||||
typedef typename std::iterator_traits<RandomAccessIterator>::value_type value_type;
|
||||
RandomAccessIterator mid = first + (last - first)/2;
|
||||
value_type pivot = median(*first, *mid, *(last-1));
|
||||
RandomAccessIterator split1 = std::partition(first, last, std::bind2nd(order, pivot));
|
||||
RandomAccessIterator split2 = std::partition(split1, last, std::bind2nd(non_strict(order), pivot));
|
||||
quicksort(first, split1, order);
|
||||
quicksort(split2, last, order);
|
||||
}
|
||||
}
|
||||
|
||||
template<typename RandomAccessIterator>
|
||||
void quicksort(RandomAccessIterator first, RandomAccessIterator last)
|
||||
{
|
||||
quicksort(first, last, std::less<typename std::iterator_traits<RandomAccessIterator>::value_type>());
|
||||
}
|
59
.config/nvim/pack/colors/falcon/corpus/css.css
Executable file
59
.config/nvim/pack/colors/falcon/corpus/css.css
Executable file
|
@ -0,0 +1,59 @@
|
|||
/* A comment. */
|
||||
@font-face {
|
||||
font-family: 'Fira Code';
|
||||
src: url('eot/FiraCode-Bold.eot');
|
||||
src: url('eot/FiraCode-Bold.eot') format('embedded-opentype'),
|
||||
url('woff2/FiraCode-Bold.woff2') format('woff2'),
|
||||
url('woff/FiraCode-Bold.woff') format('woff'),
|
||||
url('ttf/FiraCode-Bold.ttf') format('truetype');
|
||||
font-weight: 700;
|
||||
font-style: normal !important;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
html, body {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
html {
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
@media screen and (min-width: 320px) {
|
||||
html {
|
||||
font-size: calc(11px + 9 * ((100vw - 320px) / 680));
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (min-width: 1000px) {
|
||||
html {
|
||||
font-size: 21px;
|
||||
}
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: "Fira Code", monospace;
|
||||
background: #000002;
|
||||
color: #d4d4d9;
|
||||
font-feature-settings: "calt" 1; /* Enable ligatures for IE 10+, Edge */
|
||||
text-rendering: optimizeLegibility; /* Force ligatures for Webkit, Blink, Gecko */
|
||||
-webkit-font-smoothing: subpixel-antialiased;
|
||||
}
|
||||
|
||||
#canvas {
|
||||
display: block;
|
||||
z-index: -1;
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
}
|
||||
|
||||
code, pre {
|
||||
font-family: "Fira Code", monospace;
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
.blah #thing:nth-child(1) {
|
||||
display: inline;
|
||||
}
|
86
.config/nvim/pack/colors/falcon/corpus/elm.elm
Executable file
86
.config/nvim/pack/colors/falcon/corpus/elm.elm
Executable file
|
@ -0,0 +1,86 @@
|
|||
import Html exposing (..)
|
||||
|
||||
{-| TodoMVC implemented in Elm, using plain HTML and CSS for rendering.
|
||||
This application is broken up into three key parts:
|
||||
1. Model - a full definition of the application's state
|
||||
2. Update - a way to step the application state forward
|
||||
3. View - a way to visualize our application state with HTML
|
||||
This clean division of concerns is a core part of Elm. You can read more about
|
||||
this in <http://guide.elm-lang.org/architecture/index.html>
|
||||
-}
|
||||
|
||||
|
||||
main : Program (Maybe Model) Model Msg
|
||||
main =
|
||||
Browser.document
|
||||
{ init = init
|
||||
, view = \model -> { title = "Elm • TodoMVC", body = [view model] }
|
||||
, update = updateWithStorage
|
||||
, subscriptions = \_ -> Sub.none
|
||||
}
|
||||
|
||||
-- The full application state of our todo app.
|
||||
type alias Model =
|
||||
{ entries : List Entry
|
||||
, field : String
|
||||
, uid : Int
|
||||
, visibility : String
|
||||
}
|
||||
|
||||
type Msg
|
||||
= NoOp
|
||||
| UpdateField String
|
||||
| EditingEntry Int Bool
|
||||
| UpdateEntry Int String
|
||||
| Add
|
||||
| Delete Int
|
||||
| DeleteComplete
|
||||
| Check Int Bool
|
||||
| CheckAll Bool
|
||||
| ChangeVisibility String
|
||||
|
||||
-- How we update our Model on a given Msg?
|
||||
update : Msg -> Model -> ( Model, Cmd Msg )
|
||||
update msg model =
|
||||
case msg of
|
||||
NoOp ->
|
||||
( model, Cmd.none )
|
||||
|
||||
Add ->
|
||||
( { model
|
||||
| uid = model.uid + 1
|
||||
, field = ""
|
||||
, entries =
|
||||
if String.isEmpty model.field then
|
||||
model.entries
|
||||
else
|
||||
model.entries ++ [ newEntry model.field model.uid ]
|
||||
}
|
||||
, Cmd.none
|
||||
)
|
||||
|
||||
UpdateField str ->
|
||||
( { model | field = str }
|
||||
, Cmd.none
|
||||
)
|
||||
|
||||
-- VIEW CONTROLS AND FOOTER
|
||||
|
||||
|
||||
viewControls : String -> List Entry -> Html Msg
|
||||
viewControls visibility entries =
|
||||
let
|
||||
entriesCompleted =
|
||||
List.length (List.filter .completed entries)
|
||||
|
||||
entriesLeft =
|
||||
List.length entries - entriesCompleted
|
||||
in
|
||||
footer
|
||||
[ class "footer"
|
||||
, hidden (List.isEmpty entries)
|
||||
]
|
||||
[ lazy viewControlsCount entriesLeft
|
||||
, lazy viewControlsFilters visibility
|
||||
, lazy viewControlsClear entriesCompleted
|
||||
]
|
93
.config/nvim/pack/colors/falcon/corpus/go.go
Executable file
93
.config/nvim/pack/colors/falcon/corpus/go.go
Executable file
|
@ -0,0 +1,93 @@
|
|||
package main
|
||||
|
||||
import "fmt"
|
||||
|
||||
func main() {
|
||||
list := []int{31, 41, 59, 26, 53, 58, 97, 93, 23, 84}
|
||||
fmt.Println("unsorted:", list)
|
||||
|
||||
quicksort(list)
|
||||
fmt.Println("sorted! ", list)
|
||||
}
|
||||
|
||||
func quicksort(a []int) {
|
||||
var pex func(int, int)
|
||||
pex = func(lower, upper int) {
|
||||
for {
|
||||
switch upper - lower {
|
||||
case -1, 0: // 0 or 1 item in segment. nothing to do here!
|
||||
return
|
||||
case 1: // 2 items in segment
|
||||
// < operator respects strict weak order
|
||||
if a[upper] < a[lower] {
|
||||
// a quick exchange and we're done.
|
||||
a[upper], a[lower] = a[lower], a[upper]
|
||||
}
|
||||
return
|
||||
// Hoare suggests optimized sort-3 or sort-4 algorithms here,
|
||||
// but does not provide an algorithm.
|
||||
}
|
||||
|
||||
// Hoare stresses picking a bound in a way to avoid worst case
|
||||
// behavior, but offers no suggestions other than picking a
|
||||
// random element. A function call to get a random number is
|
||||
// relatively expensive, so the method used here is to simply
|
||||
// choose the middle element. This at least avoids worst case
|
||||
// behavior for the obvious common case of an already sorted list.
|
||||
bx := (upper + lower) / 2
|
||||
b := a[bx] // b = Hoare's "bound" (aka "pivot")
|
||||
lp := lower // lp = Hoare's "lower pointer"
|
||||
up := upper // up = Hoare's "upper pointer"
|
||||
outer:
|
||||
for {
|
||||
// use < operator to respect strict weak order
|
||||
for lp < upper && !(b < a[lp]) {
|
||||
lp++
|
||||
}
|
||||
for {
|
||||
if lp > up {
|
||||
// "pointers crossed!"
|
||||
break outer
|
||||
}
|
||||
// < operator for strict weak order
|
||||
if a[up] < b {
|
||||
break // inner
|
||||
}
|
||||
up--
|
||||
}
|
||||
// exchange
|
||||
a[lp], a[up] = a[up], a[lp]
|
||||
lp++
|
||||
up--
|
||||
}
|
||||
// segment boundary is between up and lp, but lp-up might be
|
||||
// 1 or 2, so just call segment boundary between lp-1 and lp.
|
||||
if bx < lp {
|
||||
// bound was in lower segment
|
||||
if bx < lp-1 {
|
||||
// exchange bx with lp-1
|
||||
a[bx], a[lp-1] = a[lp-1], b
|
||||
}
|
||||
up = lp - 2
|
||||
} else {
|
||||
// bound was in upper segment
|
||||
if bx > lp {
|
||||
// exchange
|
||||
a[bx], a[lp] = a[lp], b
|
||||
}
|
||||
up = lp - 1
|
||||
lp++
|
||||
}
|
||||
// "postpone the larger of the two segments" = recurse on
|
||||
// the smaller segment, then iterate on the remaining one.
|
||||
if up-lower < upper-lp {
|
||||
pex(lower, up)
|
||||
lower = lp
|
||||
} else {
|
||||
pex(lp, upper)
|
||||
upper = up
|
||||
}
|
||||
}
|
||||
}
|
||||
pex(0, len(a)-1)
|
||||
}
|
36
.config/nvim/pack/colors/falcon/corpus/html.html
Executable file
36
.config/nvim/pack/colors/falcon/corpus/html.html
Executable file
|
@ -0,0 +1,36 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>Name Submission</title>
|
||||
<meta name="author" content="Raoul Duke">
|
||||
<script type="text/javascript" src="jquery.js"></script>
|
||||
<link rel="stylesheet" type="text/css" href="name.css">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<h1> Submit your Name here! </h1>
|
||||
<h3> We'll get more information on the following pages..</h3>
|
||||
<form name="input" action="html_form_action.php" method="get">
|
||||
First name > <input type="text" name="FirstName" value="Average" /><br />
|
||||
Last name: > <input type="text" name="LastName" value="Redditor" /><br />
|
||||
<input type="submit" value="Submit" />
|
||||
</form>
|
||||
<p class="standard" >Click "Submit" to continue..</p>
|
||||
|
||||
<h4>A nested List:</h4>
|
||||
<a href="www.google.com">Google</a>
|
||||
<ul>
|
||||
<li>Coffee & Tea</li>
|
||||
<li>Tea
|
||||
<ul>
|
||||
<li>Black tea</li>
|
||||
<li>Green tea
|
||||
<ul>
|
||||
<li>China</li>
|
||||
<li>Africa</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>Milk</li>
|
||||
</ul>
|
31
.config/nvim/pack/colors/falcon/corpus/java.java
Executable file
31
.config/nvim/pack/colors/falcon/corpus/java.java
Executable file
|
@ -0,0 +1,31 @@
|
|||
// From http://rosettacode.org/wiki/Sorting_algorithms
|
||||
public static <E extends Comparable<? super E>> List<E> quickSort(List<E> arr) {
|
||||
if (arr.isEmpty())
|
||||
return arr;
|
||||
else {
|
||||
E pivot = arr.get(0);
|
||||
|
||||
List<E> less = new LinkedList<E>();
|
||||
List<E> pivotList = new LinkedList<E>();
|
||||
List<E> more = new LinkedList<E>();
|
||||
|
||||
// Partition
|
||||
for (E i: arr) {
|
||||
if (i.compareTo(pivot) < 0)
|
||||
less.add(i);
|
||||
else if (i.compareTo(pivot) > 0)
|
||||
more.add(i);
|
||||
else
|
||||
pivotList.add(i);
|
||||
}
|
||||
|
||||
// Recursively sort sublists
|
||||
less = quickSort(less);
|
||||
more = quickSort(more);
|
||||
|
||||
// Concatenate results
|
||||
less.addAll(pivotList);
|
||||
less.addAll(more);
|
||||
return less;
|
||||
}
|
||||
}
|
53
.config/nvim/pack/colors/falcon/corpus/javascript.js
Executable file
53
.config/nvim/pack/colors/falcon/corpus/javascript.js
Executable file
|
@ -0,0 +1,53 @@
|
|||
/**
|
||||
* @file
|
||||
*
|
||||
* Watch changes to *.es6.js files and compile them to ES5 during development.
|
||||
*
|
||||
* @internal This file is part of the core javascript build process and is only
|
||||
* meant to be used in that context.
|
||||
*/
|
||||
|
||||
'use strict';
|
||||
|
||||
const fs = require('fs');
|
||||
const path = require('path');
|
||||
const chokidar = require('chokidar');
|
||||
const nconst = 4;
|
||||
const arr = thing[1];
|
||||
|
||||
const changeOrAdded = require('./changeOrAdded');
|
||||
const log = require('./log');
|
||||
|
||||
// Match only on .es6.js files.
|
||||
const fileMatch = './**/*.es6.js';
|
||||
// Ignore everything in node_modules
|
||||
const watcher = chokidar.watch(fileMatch, {
|
||||
ignoreInitial: true,
|
||||
ignored: './node_modules/**'
|
||||
});
|
||||
|
||||
const unlinkHandler = (err) => {
|
||||
if (err) {
|
||||
log(err);
|
||||
}
|
||||
for (var i = 0; i < 9; i++) {
|
||||
console.log(i);
|
||||
}
|
||||
};
|
||||
|
||||
const bool = false;
|
||||
const nullish = null;
|
||||
|
||||
console.log('Check.');
|
||||
|
||||
// Watch for filesystem changes.
|
||||
watcher
|
||||
.on('add', changeOrAdded)
|
||||
.on('change', changeOrAdded)
|
||||
.on('unlink', (filePath) => {
|
||||
const fileName = filePath.slice(0, -7);
|
||||
fs.stat(`${fileName}.js`, () => {
|
||||
fs.unlink(`${fileName}.js`, unlinkHandler);
|
||||
});
|
||||
})
|
||||
.on('ready', () => log(`Watching '${fileMatch}' for changes.`));
|
45
.config/nvim/pack/colors/falcon/corpus/lua.lua
Executable file
45
.config/nvim/pack/colors/falcon/corpus/lua.lua
Executable file
|
@ -0,0 +1,45 @@
|
|||
-- in-place quicksort
|
||||
-- @todo do the thing
|
||||
function quicksort(t, start, endi)
|
||||
start, endi = start or 1, endi or #t
|
||||
--partition w.r.t. first element
|
||||
if(endi - start < 1) then return t end
|
||||
local pivot = start
|
||||
for i = start + 1, endi do
|
||||
if t[i] <= t[pivot] then
|
||||
if i == pivot + 1 then
|
||||
t[pivot],t[pivot+1] = t[pivot+1],t[pivot]
|
||||
else
|
||||
t[pivot],t[pivot+1],t[i] = t[i],t[pivot],t[pivot+1]
|
||||
end
|
||||
pivot = pivot + 1
|
||||
end
|
||||
end
|
||||
t = quicksort(t, start, pivot - 1)
|
||||
return quicksort(t, pivot + 1, endi)
|
||||
end
|
||||
|
||||
-- example
|
||||
print(unpack(quicksort{5, 2, 7, 3, 4, 7, 1}))
|
||||
|
||||
function quicksort(t)
|
||||
if #t<2 then return t end
|
||||
local pivot=t[1]
|
||||
local a,b,c={},{},{}
|
||||
for _,v in ipairs(t) do
|
||||
if v<pivot then a[#a+1]=v
|
||||
elseif v>pivot then c[#c+1]=v
|
||||
else b[#b+1]=v
|
||||
end
|
||||
end
|
||||
a=quicksort(a)
|
||||
c=quicksort(c)
|
||||
for _,v in ipairs(b) do a[#a+1]=v end
|
||||
for _,v in ipairs(c) do a[#a+1]=v end
|
||||
return a
|
||||
end
|
||||
|
||||
-- on purpose errors to check LSP
|
||||
re
|
||||
function
|
||||
|
35
.config/nvim/pack/colors/falcon/corpus/markdown.md
Executable file
35
.config/nvim/pack/colors/falcon/corpus/markdown.md
Executable file
|
@ -0,0 +1,35 @@
|
|||
# Top level
|
||||
## Another level down
|
||||
1. Number list item
|
||||
2. Another item
|
||||
- Ul item
|
||||
- And another
|
||||
|
||||
A Paragraph with some _italics_ and something **bold** and now a [link](http://example.com).
|
||||
|
||||
> This is a block
|
||||
>
|
||||
|
||||
Inline `code` perhaps?
|
||||
|
||||
```sh
|
||||
ls -al
|
||||
```
|
||||
|
||||
```php
|
||||
$thing = 'string';
|
||||
```
|
||||
![image](http://example.com)
|
||||
|
||||
## Other stuff
|
||||
- [ ] A checkbox
|
||||
- [X] A checkbox that is marked
|
||||
|
||||
Tables:
|
||||
|
||||
First Header | Second Header
|
||||
------------ | -------------
|
||||
Content from cell 1 | Content from cell 2
|
||||
Content in the first column | Content in the second column
|
||||
|
||||
~~strikethrough~~ ?
|
61
.config/nvim/pack/colors/falcon/corpus/php.php
Executable file
61
.config/nvim/pack/colors/falcon/corpus/php.php
Executable file
|
@ -0,0 +1,61 @@
|
|||
<?php
|
||||
|
||||
namespace Drupal\ua_ccsp_module\Service;
|
||||
|
||||
use Drupal\Core\StringTranslation\StringTranslationTrait;
|
||||
|
||||
/**
|
||||
* CCSP service for users.
|
||||
*/
|
||||
class CcspUserService implements CcspUserServiceInterface {
|
||||
use StringTranslationTrait;
|
||||
|
||||
/**
|
||||
* Entity type manager.
|
||||
*
|
||||
* @var \Drupal\Core\Entity\EntityTypeManagerInterface
|
||||
*/
|
||||
protected $entityTypeManager;
|
||||
|
||||
/**
|
||||
* Field ids.
|
||||
*/
|
||||
const FIELD_FACULTY_REF = 'field_st_faculty_ref';
|
||||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
public static function createReturnReviewer($reviewer_id, $reviewer_name = '', $email = '') {
|
||||
// @TODO fix this up.
|
||||
$reviewer = $this->loadUserByName($reviewer_id);
|
||||
if (!empty($reviewer)) {
|
||||
return reset($reviewer);
|
||||
}
|
||||
$change;
|
||||
|
||||
$user_storage = $this->entityTypeManager->getStorage('user');
|
||||
$reviewer = $user_storage->create();
|
||||
$reviewer->setUsername($reviewer_id)
|
||||
->enforceIsNew()
|
||||
->activate()
|
||||
->set('roles', ['reviewer'])
|
||||
->set(CcspUserService::FIELD_FULL_NAME, $reviewer_name)
|
||||
->setEmail($email)
|
||||
->save();
|
||||
|
||||
define('CONST', 1); //thing
|
||||
// Here is a comment
|
||||
|
||||
$a_flag = FALSE;
|
||||
$a_number = 0;
|
||||
$a_null = NULL;
|
||||
|
||||
// @TODO fix this up, plaz.
|
||||
return $reviewer;
|
||||
|
||||
$hello = array_map(function($item) {
|
||||
return $item;
|
||||
}, $arr);
|
||||
}
|
||||
|
||||
}
|
36
.config/nvim/pack/colors/falcon/corpus/php_old.php
Executable file
36
.config/nvim/pack/colors/falcon/corpus/php_old.php
Executable file
|
@ -0,0 +1,36 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
function main() {
|
||||
global $_REQUEST;
|
||||
try {
|
||||
ini_set('memory_limit', '64M');
|
||||
ini_set('display_errors', 'on');
|
||||
if (isset($_REQUEST['dev'])) {
|
||||
require_once 'config_dev.php';
|
||||
}
|
||||
else {
|
||||
require_once 'config.php';
|
||||
}
|
||||
define('TESTING', FALSE);
|
||||
|
||||
if (empty($_REQUEST['api_key'])) {
|
||||
error('Invalid API key specified');
|
||||
}
|
||||
|
||||
$thing = FALSE;
|
||||
|
||||
// Check API credentials.
|
||||
$sql = <<<EOSQL
|
||||
SELECT *
|
||||
FROM users
|
||||
WHERE
|
||||
api_key = :api_key AND
|
||||
active = 1
|
||||
EOSQL;
|
||||
|
||||
$q = $_pdo->prepare($sql);
|
||||
}
|
||||
}
|
54
.config/nvim/pack/colors/falcon/corpus/python.py
Executable file
54
.config/nvim/pack/colors/falcon/corpus/python.py
Executable file
|
@ -0,0 +1,54 @@
|
|||
def dump_args(func):
|
||||
"This decorator dumps out the arguments passed to a function before calling it"
|
||||
argnames = func.func_code.co_varnames[:func.func_code.co_argcount]
|
||||
fname = func.func_name
|
||||
def echo_func(*args,**kwargs):
|
||||
print fname, ":", ', '.join(
|
||||
'%s=%r' % entry
|
||||
for entry in zip(argnames,args) + kwargs.items())
|
||||
return func(*args, **kwargs)
|
||||
return echo_func
|
||||
|
||||
@dump_args
|
||||
def f1(a,b,c):
|
||||
print a + b + c
|
||||
|
||||
f1(1, 2, 3)
|
||||
|
||||
def precondition(precondition, use_conditions=DEFAULT_ON):
|
||||
return conditions(precondition, None, use_conditions)
|
||||
|
||||
def postcondition(postcondition, use_conditions=DEFAULT_ON):
|
||||
return conditions(None, postcondition, use_conditions)
|
||||
|
||||
class conditions(object):
|
||||
__slots__ = ('__precondition', '__postcondition')
|
||||
|
||||
def __init__(self, pre, post, use_conditions=DEFAULT_ON):
|
||||
if not use_conditions:
|
||||
pre, post = None, None
|
||||
|
||||
self.__precondition = pre
|
||||
self.__postcondition = post
|
||||
|
||||
def quickSort(arr):
|
||||
less = []
|
||||
pivotList = []
|
||||
more = []
|
||||
if len(arr) <= 1:
|
||||
return arr
|
||||
else:
|
||||
pivot = arr[0]
|
||||
for i in arr:
|
||||
if i < pivot:
|
||||
less.append(i)
|
||||
elif i > pivot:
|
||||
more.append(i)
|
||||
else:
|
||||
pivotList.append(i)
|
||||
less = quickSort(less)
|
||||
more = quickSort(more)
|
||||
return less + pivotList + more
|
||||
|
||||
a = [4, 65, 2, -31, 0, 99, 83, 782, 1]
|
||||
a = quickSort(a)
|
37
.config/nvim/pack/colors/falcon/corpus/ruby.rb
Executable file
37
.config/nvim/pack/colors/falcon/corpus/ruby.rb
Executable file
|
@ -0,0 +1,37 @@
|
|||
require 'active_support'
|
||||
|
||||
module VimColors
|
||||
class RubyExample
|
||||
CONSTANT = /^[0-9]+ regex awesomes$/
|
||||
|
||||
attr_reader :colorscheme
|
||||
|
||||
# TODO: Bacon ipsum dolor sit amet
|
||||
def initialize(attributes = {})
|
||||
@colorscheme = attributes[:colorscheme]
|
||||
end
|
||||
|
||||
def self.examples
|
||||
# Bacon ipsum dolor sit amet
|
||||
['string', :symbol, true, false, nil, 99.9, 1..2].each do |value|
|
||||
puts "it appears that #{value.inspect} is a #{value.class}"
|
||||
end
|
||||
|
||||
{:key1 => :value1, key2: 'value2'}.each do |key, value|
|
||||
puts "the #{key.inspect} key has a value of #{value.inspect}"
|
||||
end
|
||||
|
||||
%w[One Two Three].each { |number| puts number }
|
||||
end
|
||||
|
||||
private
|
||||
|
||||
def heredoc_example
|
||||
<<-SQL
|
||||
SELECT *
|
||||
FROM colorschemes
|
||||
WHERE background = 'dark'
|
||||
SQL
|
||||
end
|
||||
end
|
||||
end
|
87
.config/nvim/pack/colors/falcon/corpus/twig.html.twig
Executable file
87
.config/nvim/pack/colors/falcon/corpus/twig.html.twig
Executable file
|
@ -0,0 +1,87 @@
|
|||
{#
|
||||
/**
|
||||
* @file
|
||||
* Theme override to display a single page.
|
||||
*
|
||||
* The doctype, html, head and body tags are not in this template. Instead they
|
||||
* can be found in the html.html.twig template in this directory.
|
||||
*
|
||||
* Available variables:
|
||||
*
|
||||
* General utility variables:
|
||||
* - base_path: The base URL path of the Drupal installation. Will usually be
|
||||
* "/" unless you have installed Drupal in a sub-directory.
|
||||
* - is_front: A flag indicating if the current page is the front page.
|
||||
* - logged_in: A flag indicating if the user is registered and signed in.
|
||||
* - is_admin: A flag indicating if the user has permission to access
|
||||
* administration pages.
|
||||
*
|
||||
* Site identity:
|
||||
* - front_page: The URL of the front page. Use this instead of base_path when
|
||||
* linking to the front page. This includes the language domain or prefix.
|
||||
*
|
||||
* Page content (in order of occurrence in the default page.html.twig):
|
||||
* - node: Fully loaded node, if there is an automatically-loaded node
|
||||
* associated with the page and the node ID is the second argument in the
|
||||
* page's path (e.g. node/12345 and node/12345/revisions, but not
|
||||
* comment/reply/12345).
|
||||
*
|
||||
* Regions:
|
||||
* - page.header: Items for the header region.
|
||||
* - page.primary_menu: Items for the primary menu region.
|
||||
* - page.secondary_menu: Items for the secondary menu region.
|
||||
* - page.highlighted: Items for the highlighted content region.
|
||||
* - page.help: Dynamic help text, mostly for admin pages.
|
||||
* - page.content: The main content of the current page.
|
||||
* - page.sidebar_first: Items for the first sidebar.
|
||||
* - page.sidebar_second: Items for the second sidebar.
|
||||
* - page.footer: Items for the footer region.
|
||||
* - page.breadcrumb: Items for the breadcrumb region.
|
||||
*
|
||||
* @see template_preprocess_page()
|
||||
* @see html.html.twig
|
||||
*/
|
||||
#}
|
||||
<div class="layout-container">
|
||||
|
||||
<header role="banner">
|
||||
{{ page.header }}
|
||||
</header>
|
||||
|
||||
{{ page.primary_menu }}
|
||||
{{ page.secondary_menu }}
|
||||
|
||||
{{ page.breadcrumb }}
|
||||
|
||||
{{ page.highlighted }}
|
||||
|
||||
{{ page.help }}
|
||||
|
||||
<main role="main">
|
||||
<a id="main-content" tabindex="-1"></a>{# link is in html.html.twig #}
|
||||
|
||||
<div class="layout-content">
|
||||
{{ page.content }}
|
||||
</div>{# /.layout-content #}
|
||||
|
||||
{% if page.sidebar_first %}
|
||||
<aside class="layout-sidebar-first" role="complementary">
|
||||
{{ page.sidebar_first }}
|
||||
</aside>
|
||||
{% endif %}
|
||||
|
||||
{% if page.sidebar_second %}
|
||||
<aside class="layout-sidebar-second" role="complementary">
|
||||
{{ page.sidebar_second }}
|
||||
</aside>
|
||||
{% endif %}
|
||||
|
||||
</main>
|
||||
|
||||
{% if page.footer %}
|
||||
<footer role="contentinfo">
|
||||
{{ page.footer }}
|
||||
</footer>
|
||||
{% endif %}
|
||||
|
||||
</div>{# /.layout-container #}
|
24
.config/nvim/pack/colors/falcon/corpus/xml.xml
Executable file
24
.config/nvim/pack/colors/falcon/corpus/xml.xml
Executable file
|
@ -0,0 +1,24 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<phpunit backupGlobals="false"
|
||||
backupStaticAttributes="false"
|
||||
colors="true"
|
||||
convertErrorsToExceptions="true"
|
||||
convertNoticesToExceptions="true"
|
||||
convertWarningsToExceptions="true"
|
||||
processIsolation="false"
|
||||
stopOnFailure="false"
|
||||
syntaxCheck="false"
|
||||
bootstrap="vendor/autoload.php"
|
||||
>
|
||||
<testsuites>
|
||||
<testsuite name="Behat Gherkin test suite">
|
||||
<directory>./tests/Behat/Gherkin/</directory>
|
||||
</testsuite>
|
||||
</testsuites>
|
||||
|
||||
<filter>
|
||||
<whitelist>
|
||||
<directory>./src/Behat/Gherkin/</directory>
|
||||
</whitelist>
|
||||
</filter>
|
||||
</phpunit>
|
18
.config/nvim/pack/colors/falcon/estilo.yml
Executable file
18
.config/nvim/pack/colors/falcon/estilo.yml
Executable file
|
@ -0,0 +1,18 @@
|
|||
name: 'Falcon'
|
||||
version: '0.0.8'
|
||||
license: 'MIT'
|
||||
author: 'Michael Welford'
|
||||
url: 'https://github.com/fenetikm/falcon'
|
||||
description: 'A dark, easy on the eyes, fiery gray bluish kinda colour scheme'
|
||||
colorschemes:
|
||||
- name: falcon
|
||||
background: dark
|
||||
palette: falcon
|
||||
lightline:
|
||||
- name: falcon
|
||||
palette: falcon
|
||||
style: falcon
|
||||
airline:
|
||||
- name: falcon
|
||||
palette: falcon
|
||||
style: falcon
|
18
.config/nvim/pack/colors/falcon/estilo/addons/nvim-term.yml
Executable file
18
.config/nvim/pack/colors/falcon/estilo/addons/nvim-term.yml
Executable file
|
@ -0,0 +1,18 @@
|
|||
color_foreground: 'normal_gray'
|
||||
color_background: 'bg'
|
||||
color_0: 'black'
|
||||
color_1: 'red'
|
||||
color_2: 'green'
|
||||
color_3: 'yellow'
|
||||
color_4: 'purple'
|
||||
color_5: 'orange'
|
||||
color_6: 'cyan'
|
||||
color_7: 'normal_gray'
|
||||
color_8: 'bg'
|
||||
color_9: 'bright_red'
|
||||
color_10: 'bright_green'
|
||||
color_11: 'bright_yellow'
|
||||
color_12: 'blue_gray'
|
||||
color_13: 'bright_orange'
|
||||
color_14: 'bright_cyan'
|
||||
color_15: 'white'
|
16
.config/nvim/pack/colors/falcon/estilo/addons/term.yml
Executable file
16
.config/nvim/pack/colors/falcon/estilo/addons/term.yml
Executable file
|
@ -0,0 +1,16 @@
|
|||
0: 'black'
|
||||
1: 'red'
|
||||
2: 'green'
|
||||
3: 'yellow'
|
||||
4: 'purple'
|
||||
5: 'orange'
|
||||
6: 'cyan'
|
||||
7: 'normal_gray'
|
||||
8: 'bg'
|
||||
9: 'bright_red'
|
||||
10: 'bright_green'
|
||||
11: 'bright_yellow'
|
||||
12: 'blue_gray'
|
||||
13: 'bright_orange'
|
||||
14: 'bright_cyan'
|
||||
15: 'white'
|
18
.config/nvim/pack/colors/falcon/estilo/airline/falcon.yml
Executable file
18
.config/nvim/pack/colors/falcon/estilo/airline/falcon.yml
Executable file
|
@ -0,0 +1,18 @@
|
|||
normal1: 'black normal_gray'
|
||||
normal2: 'normal_gray dark_gray'
|
||||
normal3: 'mid_gray status'
|
||||
inactive1: 'mid_dark_gray inactive_status'
|
||||
inactive2: 'mid_dark_gray inactive_status'
|
||||
inactive3: 'mid_dark_gray inactive_status'
|
||||
insert1: 'black red'
|
||||
insert2: 'normal_gray dark_gray'
|
||||
insert3: 'normal_gray status'
|
||||
replace1: 'black orange'
|
||||
replace2: 'normal_gray dark_gray'
|
||||
replace3: 'normal_gray status'
|
||||
visual1: 'black yellow'
|
||||
visual2: 'normal_gray dark_gray'
|
||||
visual3: 'normal_gray status'
|
||||
ctrlp1: 'mid_gray dark_gray'
|
||||
ctrlp2: 'mid_gray dark_gray'
|
||||
ctrlp3: 'mid_gray dark_gray'
|
30
.config/nvim/pack/colors/falcon/estilo/lightline/falcon.yml
Executable file
30
.config/nvim/pack/colors/falcon/estilo/lightline/falcon.yml
Executable file
|
@ -0,0 +1,30 @@
|
|||
normal1: 'black normal_gray'
|
||||
normal2: 'normal_gray status'
|
||||
normal3: 'mid_gray dark_gray'
|
||||
normal4: 'light_gray mid_gray'
|
||||
normal5: 'black normal_gray'
|
||||
normalError: 'black red'
|
||||
inactive1: 'mid_gray dark_gray'
|
||||
inactive2: 'mid_gray dark_gray'
|
||||
inactive3: 'mid_gray dark_gray'
|
||||
inactive4: 'mid_gray dark_gray'
|
||||
inactive5: 'mid_gray dark_gray'
|
||||
insert1: 'black red'
|
||||
insert2: 'normal_gray mid_gray'
|
||||
insert3: 'normal_gray mid_gray'
|
||||
insert4: 'normal_gray mid_gray'
|
||||
insert5: 'black red'
|
||||
replace1: 'black orange'
|
||||
replace2: 'normal_gray mid_gray'
|
||||
replace3: 'normal_gray mid_gray'
|
||||
replace4: 'normal_gray mid_gray'
|
||||
replace5: 'black orange'
|
||||
visual1: 'black yellow'
|
||||
visual2: 'normal_gray mid_gray'
|
||||
visual3: 'normal_gray mid_gray'
|
||||
visual4: 'normal_gray mid_gray'
|
||||
visual5: 'black yellow'
|
||||
tablineLeft: 'mid_gray dark_gray'
|
||||
tablineSelected: 'light_gray dark_gray'
|
||||
tablineMiddle: 'mid_gray dark_gray'
|
||||
tablineRight: 'mid_gray dark_gray'
|
48
.config/nvim/pack/colors/falcon/estilo/palettes/falcon.yml
Executable file
48
.config/nvim/pack/colors/falcon/estilo/palettes/falcon.yml
Executable file
|
@ -0,0 +1,48 @@
|
|||
red: '#FF3600'
|
||||
mid_red: '#a82400'
|
||||
orange: '#FF761A'
|
||||
yellow: '#FFC552'
|
||||
mid_yellow: '#c99c40'
|
||||
green: '#718E3F'
|
||||
light_blue_gray: '#C8D0E3'
|
||||
blue_gray: '#99A4BC'
|
||||
blue_mid_gray: '#4F4F59'
|
||||
blue_dark_gray: '#2F2F3A'
|
||||
blue_dark_gray_alt: '#242430'
|
||||
blue_darkest_gray: '#171729'
|
||||
dark_tan: '#a1968a'
|
||||
tan: '#cfc1b2'
|
||||
br_tan: '#f0e1ce'
|
||||
tan_yellow: '#FFD392'
|
||||
br_yellow: '#FFE8C0'
|
||||
br_green: '#EAFFC0'
|
||||
br_blue: '#BFDAFF'
|
||||
white: '#F8F8FF'
|
||||
light_gray: '#DFDFE5'
|
||||
normal_gray: '#B4B4B9'
|
||||
mid_gray_alt: '#878791'
|
||||
mid_gray: '#787882'
|
||||
mid_dark_gray: '#57575E'
|
||||
dark_gray: '#36363A'
|
||||
darker_gray: '#212127'
|
||||
black: '#000004'
|
||||
bg: '#020221'
|
||||
bg_alt: '#0A0A29'
|
||||
inactive_bg: '#151521'
|
||||
purple_dark_gray: '#3F3A59'
|
||||
purple: '#635196'
|
||||
lavender: '#9F97CC'
|
||||
status: '#28282D'
|
||||
inactive_status: '#1C1C22'
|
||||
off_red: '#300E03'
|
||||
off_blue: '#031630'
|
||||
off_green: '#203003'
|
||||
dark_indigo: '#2D1078'
|
||||
indigo: '#5521D9'
|
||||
br_indigo: '#8859FF'
|
||||
cyan: '#34bfa4'
|
||||
bright_red: '#FF8E78'
|
||||
bright_green: '#B1BF75'
|
||||
bright_yellow: '#FFD392'
|
||||
bright_orange: '#FFB07B'
|
||||
bright_cyan: '#8BCCBF'
|
3
.config/nvim/pack/colors/falcon/estilo/syntax/ale.yml
Executable file
3
.config/nvim/pack/colors/falcon/estilo/syntax/ale.yml
Executable file
|
@ -0,0 +1,3 @@
|
|||
ALEErrorSign: 'red -'
|
||||
ALEWarningSign: 'orange -'
|
||||
ALEInfoSign: 'normal_gray -'
|
2
.config/nvim/pack/colors/falcon/estilo/syntax/aspvbs.yml
Executable file
2
.config/nvim/pack/colors/falcon/estilo/syntax/aspvbs.yml
Executable file
|
@ -0,0 +1,2 @@
|
|||
AspVBSVariableSimple: '@Identifier'
|
||||
AspVBSStatement: '@Keyword'
|
85
.config/nvim/pack/colors/falcon/estilo/syntax/base.yml
Executable file
85
.config/nvim/pack/colors/falcon/estilo/syntax/base.yml
Executable file
|
@ -0,0 +1,85 @@
|
|||
# BASE UI
|
||||
ColorColumn: '- inactive_bg'
|
||||
Conceal: '- -'
|
||||
Cursor: '- mid_gray'
|
||||
CursorIM: ''
|
||||
CursorColumn: '- blue_darkest_gray'
|
||||
CursorLine: '- blue_dark_gray'
|
||||
CursorLineNr: 'normal_gray blue_dark_gray'
|
||||
Directory: 'blue_gray'
|
||||
DiffAdd: '- off_green'
|
||||
DiffChange: '- off_blue'
|
||||
DiffDelete: '- off_red'
|
||||
DiffText: '- off_green'
|
||||
ErrorMsg: 'red -'
|
||||
VertSplit: 'mid_gray -'
|
||||
Folded: 'mid_gray darker_gray'
|
||||
FoldColumn: 'mid_gray darker_gray'
|
||||
SignColumn: 'blue_gray'
|
||||
IncSearch: 'bg br_blue b'
|
||||
LineNr: 'mid_dark_gray'
|
||||
MatchParen: 'br_tan - b'
|
||||
ModeMsg: ''
|
||||
MoreMsg: ''
|
||||
NonText: 'dark_gray bg'
|
||||
Normal: 'normal_gray bg'
|
||||
PMenu: 'mid_gray_alt blue_darkest_gray'
|
||||
PMenuSel: 'black yellow'
|
||||
PmenuSbar: 'normal_gray'
|
||||
PmenuThumb: 'light_gray'
|
||||
Question: 'light_gray'
|
||||
Search: 'br_blue - bu'
|
||||
SpecialKey: 'mid_gray'
|
||||
SpellBad: '- purple_dark_gray u'
|
||||
SpellLocal: '- purple_dark_gray u'
|
||||
SpellCap: '- purple_dark_gray c'
|
||||
SpellRare: '- purple_dark_gray u'
|
||||
StatusLine: 'mid_gray status'
|
||||
StatusLineNC: 'mid_gray dark_gray'
|
||||
TabLine: 'mid_gray dark_gray'
|
||||
TabLineFill: '- darker_gray'
|
||||
TabLineSel: 'light_gray -'
|
||||
Title: 'tan'
|
||||
Visual: 'light_gray dark_indigo'
|
||||
VisualNOS: ''
|
||||
WarningMsg: ''
|
||||
WildMenu: 'bg yellow'
|
||||
# BASE SYNTAX
|
||||
Comment: 'mid_gray - i'
|
||||
Constant: 'normal_gray - b'
|
||||
String: 'light_blue_gray' # Constant
|
||||
Character: '@String' # Constant
|
||||
Boolean: 'normal_gray - i' # Constant
|
||||
Number: 'normal_gray' # Constant
|
||||
Float: '@Number' # Constant
|
||||
Identifier: 'blue_gray'
|
||||
Function: 'yellow' # Identifier
|
||||
Statement: 'blue_gray'
|
||||
Conditional: 'yellow' # Statement
|
||||
Repeat: '@Statement' # Statement
|
||||
Label: '@Statement' # Statement
|
||||
Operator: 'orange' # Statement
|
||||
Keyword: 'yellow' # Statement
|
||||
Exception: '@Statement' # Statement
|
||||
PreProc: 'tan'
|
||||
Include: '@PreProc' # PreProc
|
||||
Define: '@PreProc' # PreProc
|
||||
Macro: '@PreProc' # PreProc
|
||||
PreCondit: '@PreProc' # PreProc
|
||||
Type: 'light_gray -'
|
||||
StorageClass: '@Type' # Type
|
||||
Structure: '@Type' # Type
|
||||
Typedef: '@Type' # Type
|
||||
Special: 'orange'
|
||||
SpecialChar: '@Special' # Special
|
||||
Tag: '@Special' # Special
|
||||
Delimiter: 'light_gray' # Special
|
||||
SpecialComment: '@Special' # Special
|
||||
Debug: '@Special' # Special
|
||||
Underlined: 'blue_gray - u'
|
||||
Ignore: ''
|
||||
Error: ''
|
||||
Todo: 'bg tan i'
|
||||
QuickFixLine: 'br_blue dark_gray'
|
||||
Bold: '- - b'
|
||||
Italic: '- - i'
|
3
.config/nvim/pack/colors/falcon/estilo/syntax/blankline.yml
Executable file
3
.config/nvim/pack/colors/falcon/estilo/syntax/blankline.yml
Executable file
|
@ -0,0 +1,3 @@
|
|||
IndentBlanklineChar: 'dark_gray -'
|
||||
IndentBlanklineIndent1: 'dark_gray -'
|
||||
IndentBlanklineIndent2: 'blue_mid_gray -'
|
4
.config/nvim/pack/colors/falcon/estilo/syntax/buftabline.yml
Executable file
4
.config/nvim/pack/colors/falcon/estilo/syntax/buftabline.yml
Executable file
|
@ -0,0 +1,4 @@
|
|||
BufTabLineCurrent: 'normal_gray mid_gray'
|
||||
BufTabLineActive: 'light_gray dark_gray'
|
||||
BufTabLineHidden: 'mid_gray dark_gray'
|
||||
BufTabLineFill: '- darker_gray'
|
1
.config/nvim/pack/colors/falcon/estilo/syntax/cleverf.yml
Executable file
1
.config/nvim/pack/colors/falcon/estilo/syntax/cleverf.yml
Executable file
|
@ -0,0 +1 @@
|
|||
CleverFDefaultLabel: 'br_blue - u'
|
14
.config/nvim/pack/colors/falcon/estilo/syntax/cpp.yml
Executable file
14
.config/nvim/pack/colors/falcon/estilo/syntax/cpp.yml
Executable file
|
@ -0,0 +1,14 @@
|
|||
cPreCondit: 'br_blue'
|
||||
cDefine: '@Define'
|
||||
cStructure: 'blue_gray'
|
||||
cStorageClass: '@StorageClass'
|
||||
cType: '@Type'
|
||||
cCustomParen: 'orange'
|
||||
cConditional: 'yellow'
|
||||
cCustomFunc: 'blue_gray'
|
||||
cStatement: 'yellow'
|
||||
cppSTLnamespace: 'light_blue_gray'
|
||||
cppAccess: 'light_gray'
|
||||
cAnsiFunction: 'tan'
|
||||
cRepeat: 'yellow'
|
||||
cSpecial: 'light_blue_gray - b'
|
120
.config/nvim/pack/colors/falcon/estilo/syntax/css.yml
Executable file
120
.config/nvim/pack/colors/falcon/estilo/syntax/css.yml
Executable file
|
@ -0,0 +1,120 @@
|
|||
cssComment: '' # Comment
|
||||
cssVendor: 'tan' # Comment
|
||||
cssHacks: '' # Comment
|
||||
cssTagName: 'blue_gray' # Statement
|
||||
cssDeprecated: '' # Error
|
||||
cssSelectorOp: '' # Special
|
||||
cssSelectorOp2: 'yellow' # Special
|
||||
cssAttrComma: 'normal_gray' # Special
|
||||
cssAnimationProp: '' # cssProp
|
||||
cssBackgroundProp: '' # cssProp
|
||||
cssBorderProp: '' # cssProp
|
||||
cssBoxProp: '' # cssProp
|
||||
cssColorProp: '' # cssProp
|
||||
cssContentForPagedMediaProp: '' # cssProp
|
||||
cssDimensionProp: '' # cssProp
|
||||
cssFlexibleBoxProp: '' # cssProp
|
||||
cssFontProp: '' # cssProp
|
||||
cssGeneratedContentProp: '' # cssProp
|
||||
cssGridProp: '' # cssProp
|
||||
cssHyerlinkProp: '' # cssProp
|
||||
cssLineboxProp: '' # cssProp
|
||||
cssListProp: '' # cssProp
|
||||
cssMarqueeProp: '' # cssProp
|
||||
cssMultiColumnProp: '' # cssProp
|
||||
cssPagedMediaProp: '' # cssProp
|
||||
cssPositioningProp: '' # cssProp
|
||||
cssPrintProp: '' # cssProp
|
||||
cssRubyProp: '' # cssProp
|
||||
cssSpeechProp: '' # cssProp
|
||||
cssTableProp: '' # cssProp
|
||||
cssTextProp: '' # cssProp
|
||||
cssTransformProp: '' # cssProp
|
||||
cssTransitionProp: '' # cssProp
|
||||
cssUIProp: '' # cssProp
|
||||
cssIEUIProp: '' # cssProp
|
||||
cssAuralProp: '' # cssProp
|
||||
cssRenderProp: '' # cssProp
|
||||
cssMobileTextProp: '' # cssProp
|
||||
cssAnimationAttr: '' # cssAttr
|
||||
cssBackgroundAttr: '' # cssAttr
|
||||
cssBorderAttr: '' # cssAttr
|
||||
cssBoxAttr: '' # cssAttr
|
||||
cssContentForPagedMediaAttr: '' # cssAttr
|
||||
cssDimensionAttr: '' # cssAttr
|
||||
cssFlexibleBoxAttr: '' # cssAttr
|
||||
cssFontAttr: '' # cssAttr
|
||||
cssGeneratedContentAttr: '' # cssAttr
|
||||
cssGridAttr: '' # cssAttr
|
||||
cssHyerlinkAttr: '' # cssAttr
|
||||
cssLineboxAttr: '' # cssAttr
|
||||
cssListAttr: '' # cssAttr
|
||||
cssMarginAttr: '' # cssAttr
|
||||
cssMarqueeAttr: '' # cssAttr
|
||||
cssMultiColumnAttr: '' # cssAttr
|
||||
cssPaddingAttr: '' # cssAttr
|
||||
cssPagedMediaAttr: '' # cssAttr
|
||||
cssPositioningAttr: '' # cssAttr
|
||||
cssGradientAttr: '' # cssAttr
|
||||
cssPrintAttr: '' # cssAttr
|
||||
cssRubyAttr: '' # cssAttr
|
||||
cssSpeechAttr: '' # cssAttr
|
||||
cssTableAttr: '' # cssAttr
|
||||
cssTextAttr: '' # cssAttr
|
||||
cssTransformAttr: '' # cssAttr
|
||||
cssTransitionAttr: '' # cssAttr
|
||||
cssUIAttr: '' # cssAttr
|
||||
cssIEUIAttr: '' # cssAttr
|
||||
cssAuralAttr: '' # cssAttr
|
||||
cssRenderAttr: '' # cssAttr
|
||||
cssCommonAttr: '' # cssAttr
|
||||
cssPseudoClassId: '' # PreProc
|
||||
cssPseudoClassLang: '' # Constant
|
||||
cssValueLength: '' # Number
|
||||
cssValueInteger: '' # Number
|
||||
cssValueNumber: '' # Number
|
||||
cssValueAngle: '' # Number
|
||||
cssValueTime: '' # Number
|
||||
cssValueFrequency: '' # Number
|
||||
cssFunction: '@Function' # Constant
|
||||
cssURL: '' # String
|
||||
cssFunctionName: '' # Function
|
||||
cssFunctionComma: '' # Function
|
||||
cssColor: '' # Constant
|
||||
cssIdentifier: 'normal_gray' # Function
|
||||
cssInclude: 'normal_gray' # Include
|
||||
cssIncludeKeyword: 'tan' # atKeyword
|
||||
cssImportant: 'red - b' # Special
|
||||
cssBraces: '@Delimiter' # Function
|
||||
cssBraceError: '' # Error
|
||||
cssError: '' # Error
|
||||
cssUnicodeEscape: '' # Special
|
||||
cssStringQQ: '' # String
|
||||
cssStringQ: '' # String
|
||||
cssAttributeSelector: 'normal_gray' # String
|
||||
cssMedia: '' # atKeyword
|
||||
cssMediaType: 'yellow - i' # Special
|
||||
cssMediaComma: '' # Normal
|
||||
cssMediaKeyword: 'yellow' # Statement
|
||||
cssMediaProp: '' # cssProp
|
||||
cssMediaAttr: '' # cssAttr
|
||||
cssPage: '' # atKeyword
|
||||
cssPagePseudo: '' # PreProc
|
||||
cssPageMargin: '' # atKeyword
|
||||
cssPageProp: '' # cssProp
|
||||
cssKeyFrame: '' # atKeyword
|
||||
cssKeyFrameSelector: '' # Constant
|
||||
cssFontDescriptor: 'tan' # Special
|
||||
cssFontDescriptorFunction: '' # Constant
|
||||
cssFontDescriptorProp: '' # cssProp
|
||||
cssFontDescriptorAttr: '' # cssAttr
|
||||
cssUnicodeRange: '' # Constant
|
||||
cssClassName: 'normal_gray' # Function
|
||||
cssClassNameDot: 'yellow' # Function
|
||||
cssProp: 'normal_gray' # StorageClass
|
||||
cssAttr: 'light_gray' # Constant
|
||||
cssUnitDecorators: '' # Number
|
||||
cssNoise: 'light_gray' # Noise
|
||||
atKeyword: '' # PreProc
|
||||
cssPseudoClass: 'light_gray'
|
||||
cssAtRuleLogical: 'orange'
|
2
.config/nvim/pack/colors/falcon/estilo/syntax/custom.yml
Executable file
2
.config/nvim/pack/colors/falcon/estilo/syntax/custom.yml
Executable file
|
@ -0,0 +1,2 @@
|
|||
Done: 'green -'
|
||||
Partial: 'yellow -'
|
7
.config/nvim/pack/colors/falcon/estilo/syntax/diff.yml
Executable file
7
.config/nvim/pack/colors/falcon/estilo/syntax/diff.yml
Executable file
|
@ -0,0 +1,7 @@
|
|||
# git commit messages
|
||||
diffAdded: 'light_gray off_green'
|
||||
diffRemoved: 'light_gray off_red'
|
||||
diffFile: '@Title'
|
||||
diffLine: 'light_blue_gray'
|
||||
diffSubname: 'light_gray'
|
||||
# vimdiff uses DiffAdd etc. in base.yml
|
1
.config/nvim/pack/colors/falcon/estilo/syntax/docker.yml
Executable file
1
.config/nvim/pack/colors/falcon/estilo/syntax/docker.yml
Executable file
|
@ -0,0 +1 @@
|
|||
dockercomposeKeywords: 'blue_gray'
|
4
.config/nvim/pack/colors/falcon/estilo/syntax/elm.yml
Executable file
4
.config/nvim/pack/colors/falcon/estilo/syntax/elm.yml
Executable file
|
@ -0,0 +1,4 @@
|
|||
elmTypeDef: '@Type'
|
||||
elmType: 'light_gray'
|
||||
elmTopLevelDecl: 'tan'
|
||||
elmAlias: '@Identifier'
|
14
.config/nvim/pack/colors/falcon/estilo/syntax/fugitive.yml
Executable file
14
.config/nvim/pack/colors/falcon/estilo/syntax/fugitive.yml
Executable file
|
@ -0,0 +1,14 @@
|
|||
FugitiveblameBoundary: '' # Keyword
|
||||
FugitiveblameHash: '' # Identifier
|
||||
FugitiveblameUncommitted: '' # Ignore
|
||||
FugitiveblameTime: '' # PreProc
|
||||
FugitiveblameLineNumber: '' # Number
|
||||
FugitiveblameOriginalFile: '' # String
|
||||
FugitiveblameOriginalLineNumber: '' #
|
||||
FugitiveblameShort: '' # FugitiveblameDelimiter
|
||||
FugitiveblameDelimiter: '' # Delimiter
|
||||
FugitiveblameNotCommittedYet: '' # Comment
|
||||
fugitiveSymbolicRef: 'blue_gray'
|
||||
fugitiveHeader: 'yellow'
|
||||
fugitiveHunk: 'normal_gray'
|
||||
fugitiveModifier: 'orange'
|
3
.config/nvim/pack/colors/falcon/estilo/syntax/fzf.yml
Executable file
3
.config/nvim/pack/colors/falcon/estilo/syntax/fzf.yml
Executable file
|
@ -0,0 +1,3 @@
|
|||
fzf1: 'yellow dark_gray'
|
||||
fzf2: 'orange dark_gray'
|
||||
fzf3: 'orange dark_gray'
|
26
.config/nvim/pack/colors/falcon/estilo/syntax/gitcommit.yml
Executable file
26
.config/nvim/pack/colors/falcon/estilo/syntax/gitcommit.yml
Executable file
|
@ -0,0 +1,26 @@
|
|||
gitcommitSummary: 'normal_gray' # Keyword
|
||||
gitcommitComment: '' # Comment
|
||||
gitcommitUntracked: '' # gitcommitComment
|
||||
gitcommitDiscarded: '' # gitcommitComment
|
||||
gitcommitSelected: '' # gitcommitComment
|
||||
gitcommitUnmerged: '' # gitcommitComment
|
||||
gitcommitOnBranch: '' # Comment
|
||||
gitcommitBranch: 'normal_gray' # Special
|
||||
gitcommitNoBranch: '' # gitCommitBranch
|
||||
gitcommitDiscardedType: 'blue_gray' # gitcommitType
|
||||
gitcommitSelectedType: 'green' # gitcommitType
|
||||
gitcommitUnmergedType: '' # gitcommitType
|
||||
gitcommitType: '' # Type
|
||||
gitcommitNoChanges: '' # gitcommitHeader
|
||||
gitcommitHeader: '' # PreProc
|
||||
gitcommitUntrackedFile: '' # gitcommitFile
|
||||
gitcommitDiscardedFile: 'light_gray' # gitcommitFile
|
||||
gitcommitSelectedFile: 'normal_gray' # gitcommitFile
|
||||
gitcommitUnmergedFile: '' # gitcommitFile
|
||||
gitcommitFile: '' # Constant
|
||||
gitcommitDiscardedArrow: '' # gitcommitArrow
|
||||
gitcommitSelectedArrow: '' # gitcommitArrow
|
||||
gitcommitUnmergedArrow: '' # gitcommitArrow
|
||||
gitcommitArrow: '' # gitcommitComment
|
||||
gitcommitOverflow: '' # none
|
||||
gitcommitBlank: '' # Error
|
2
.config/nvim/pack/colors/falcon/estilo/syntax/gitconfig.yml
Executable file
2
.config/nvim/pack/colors/falcon/estilo/syntax/gitconfig.yml
Executable file
|
@ -0,0 +1,2 @@
|
|||
gitconfigSection: 'yellow'
|
||||
gitconfigVariable: 'blue_gray'
|
5
.config/nvim/pack/colors/falcon/estilo/syntax/gitsigns.yml
Executable file
5
.config/nvim/pack/colors/falcon/estilo/syntax/gitsigns.yml
Executable file
|
@ -0,0 +1,5 @@
|
|||
# GitGutter airblade/vim-gitgutter
|
||||
GitSignsAdd: 'green -'
|
||||
GitSignsChange: 'yellow -'
|
||||
GitSignsDelete: 'red -'
|
||||
GitSignsChangeDelete: 'orange -'
|
37
.config/nvim/pack/colors/falcon/estilo/syntax/go.yml
Executable file
37
.config/nvim/pack/colors/falcon/estilo/syntax/go.yml
Executable file
|
@ -0,0 +1,37 @@
|
|||
goDirective: '' # Statement
|
||||
goDeclaration: '' # Keyword
|
||||
goDeclType: '' # Keyword
|
||||
goStatement: '' # Statement
|
||||
goConditional: '' # Conditional
|
||||
goLabel: 'yellow' # Label
|
||||
goRepeat: 'yellow' # Repeat
|
||||
goType: '' # Type
|
||||
goSignedInts: '' # Type
|
||||
goUnsignedInts: '' # Type
|
||||
goFloats: '' # Type
|
||||
goComplexes: '' # Type
|
||||
goBuiltins: 'yellow' # Keyword
|
||||
goConstants: '' # Keyword
|
||||
goComment: '' # Comment
|
||||
goTodo: '' # Todo
|
||||
goEscapeOctal: '' # goSpecialString
|
||||
goEscapeC: '' # goSpecialString
|
||||
goEscapeX: '' # goSpecialString
|
||||
goEscapeU: '' # goSpecialString
|
||||
goEscapeBigU: '' # goSpecialString
|
||||
goSpecialString: '' # Special
|
||||
goEscapeError: '' # Error
|
||||
goString: '' # String
|
||||
goRawString: '' # String
|
||||
goCharacter: '' # Character
|
||||
goDecimalInt: '' # Integer
|
||||
goHexadecimalInt: '' # Integer
|
||||
goOctalInt: '' # Integer
|
||||
Integer: '' # Number
|
||||
goFloat: '' # Float
|
||||
goImaginary: '' # Number
|
||||
goExtraType: '' # Type
|
||||
goSpaceError: '' # Error
|
||||
goVar: 'blue_gray'
|
||||
goPackage: 'tan'
|
||||
goImport: '@goPackage'
|
5
.config/nvim/pack/colors/falcon/estilo/syntax/graphql.yml
Executable file
5
.config/nvim/pack/colors/falcon/estilo/syntax/graphql.yml
Executable file
|
@ -0,0 +1,5 @@
|
|||
graphqlVariable: 'blue_gray'
|
||||
graphqlStructure: 'tan'
|
||||
graphqlName: 'normal_gray'
|
||||
graphqlKeyword: 'yellow'
|
||||
graphqlOperator: 'orange'
|
49
.config/nvim/pack/colors/falcon/estilo/syntax/help.yml
Executable file
49
.config/nvim/pack/colors/falcon/estilo/syntax/help.yml
Executable file
|
@ -0,0 +1,49 @@
|
|||
helpIgnore: '' # Ignore
|
||||
helpHyperTextJump: 'blue_gray - u' # Identifier
|
||||
helpBar: '' # Ignore
|
||||
helpBacktick: '' # Ignore
|
||||
helpStar: 'br_blue' # Ignore
|
||||
helpHyperTextEntry: '' # String
|
||||
helpHeadline: 'yellow' # Statement
|
||||
helpHeader: '' # PreProc
|
||||
helpSectionDelim: 'tan' # PreProc
|
||||
helpVim: '' # Identifier
|
||||
helpCommand: '' # Comment
|
||||
helpExample: '' # Comment
|
||||
helpOption: 'tan' # Type
|
||||
helpSpecial: '' # Special
|
||||
helpNote: '' # Todo
|
||||
helpComment: '' # Comment
|
||||
helpConstant: '' # Constant
|
||||
helpString: '' # String
|
||||
helpCharacter: '' # Character
|
||||
helpNumber: '' # Number
|
||||
helpBoolean: '' # Boolean
|
||||
helpFloat: '' # Float
|
||||
helpIdentifier: '' # Identifier
|
||||
helpFunction: '' # Function
|
||||
helpStatement: '' # Statement
|
||||
helpConditional: '' # Conditional
|
||||
helpRepeat: '' # Repeat
|
||||
helpLabel: '' # Label
|
||||
helpOperator: '' # Operator
|
||||
helpKeyword: '' # Keyword
|
||||
helpException: '' # Exception
|
||||
helpPreProc: '' # PreProc
|
||||
helpInclude: '' # Include
|
||||
helpDefine: '' # Define
|
||||
helpMacro: '' # Macro
|
||||
helpPreCondit: '' # PreCondit
|
||||
helpType: '' # Type
|
||||
helpStorageClass: '' # StorageClass
|
||||
helpStructure: '' # Structure
|
||||
helpTypedef: '' # Typedef
|
||||
helpSpecialChar: '' # SpecialChar
|
||||
helpTag: '' # Tag
|
||||
helpDelimiter: '' # Delimiter
|
||||
helpSpecialComment: '' # SpecialComment
|
||||
helpDebug: '' # Debug
|
||||
helpUnderlined: '' # Underlined
|
||||
helpError: '' # Error
|
||||
helpTodo: '' # Todo
|
||||
helpURL: '' # String
|
1
.config/nvim/pack/colors/falcon/estilo/syntax/highlightedyank.yml
Executable file
1
.config/nvim/pack/colors/falcon/estilo/syntax/highlightedyank.yml
Executable file
|
@ -0,0 +1 @@
|
|||
HighlightedyankRegion: 'white -'
|
44
.config/nvim/pack/colors/falcon/estilo/syntax/html.yml
Executable file
44
.config/nvim/pack/colors/falcon/estilo/syntax/html.yml
Executable file
|
@ -0,0 +1,44 @@
|
|||
htmlTag: 'normal_gray' # Function
|
||||
htmlEndTag: '@Delimiter' # Identifier
|
||||
htmlArg: 'blue_gray' # Type
|
||||
htmlTagName: '@Number' # htmlStatement
|
||||
htmlSpecialTagName: 'yellow' # Exception
|
||||
htmlValue: '' # String
|
||||
htmlH1: 'yellow' # Title
|
||||
htmlH2: 'tan' # htmlH1
|
||||
htmlH3: 'tan' # htmlH2
|
||||
htmlH4: 'tan' # htmlH3
|
||||
htmlH5: 'tan' # htmlH4
|
||||
htmlH6: 'tan' # htmlH5
|
||||
htmlHead: '' # PreProc
|
||||
htmlTitle: 'normal_gray - b' # Title
|
||||
htmlBoldItalicUnderline: '' # htmlBoldUnderlineItalic
|
||||
htmlUnderlineBold: '' # htmlBoldUnderline
|
||||
htmlUnderlineItalicBold: '' # htmlBoldUnderlineItalic
|
||||
htmlUnderlineBoldItalic: '' # htmlBoldUnderlineItalic
|
||||
htmlItalicUnderline: '' # htmlUnderlineItalic
|
||||
htmlItalicBold: '' # htmlBoldItalic
|
||||
htmlItalicBoldUnderline: '' # htmlBoldUnderlineItalic
|
||||
htmlItalicUnderlineBold: '' # htmlBoldUnderlineItalic
|
||||
htmlLink: '' # Underlined
|
||||
htmlLeadingSpace: '' # None
|
||||
htmlPreStmt: '' # PreProc
|
||||
htmlPreError: '' # Error
|
||||
htmlPreProc: '' # PreProc
|
||||
htmlPreAttr: '' # String
|
||||
htmlPreProcAttrName: '' # PreProc
|
||||
htmlPreProcAttrError: '' # Error
|
||||
htmlSpecial: '' # Special
|
||||
htmlSpecialChar: 'tan' # Special
|
||||
htmlString: '' # String
|
||||
htmlStatement: '' # Statement
|
||||
htmlComment: '' # Comment
|
||||
htmlCommentPart: '' # Comment
|
||||
htmlCommentError: '' # htmlError
|
||||
htmlTagError: '' # htmlError
|
||||
htmlEvent: '' # javaScript
|
||||
htmlError: '' # Error
|
||||
javaScript: '' # Special
|
||||
javaScriptExpression: '' # javaScript
|
||||
htmlCssStyleComment: '' # Comment
|
||||
htmlCssDefinition: '' # Special
|
2
.config/nvim/pack/colors/falcon/estilo/syntax/indent.yml
Executable file
2
.config/nvim/pack/colors/falcon/estilo/syntax/indent.yml
Executable file
|
@ -0,0 +1,2 @@
|
|||
IndentGuidesOdd: '- dark_gray'
|
||||
IndentGuidesEven: '- darker_gray'
|
2
.config/nvim/pack/colors/falcon/estilo/syntax/java.yml
Executable file
2
.config/nvim/pack/colors/falcon/estilo/syntax/java.yml
Executable file
|
@ -0,0 +1,2 @@
|
|||
javaRepeat: 'yellow'
|
||||
javaStatement: '@javaRepeat'
|
75
.config/nvim/pack/colors/falcon/estilo/syntax/javascript.yml
Executable file
75
.config/nvim/pack/colors/falcon/estilo/syntax/javascript.yml
Executable file
|
@ -0,0 +1,75 @@
|
|||
javaScriptComment: '' # Comment
|
||||
javaScriptLineComment: '' # Comment
|
||||
javaScriptCommentTodo: '' # Todo
|
||||
javaScriptSpecial: '' # Special
|
||||
javaScriptStringS: '' # String
|
||||
javaScriptStringD: '' # String
|
||||
javaScriptCharacter: '' # Character
|
||||
javaScriptSpecialCharacter: '' # javaScriptSpecial
|
||||
javaScriptNumber: '' # javaScriptValue
|
||||
javaScriptConditional: '' # Conditional
|
||||
javaScriptRepeat: '' # Repeat
|
||||
javaScriptBranch: '' # Conditional
|
||||
javaScriptOperator: '' # Operator
|
||||
javaScriptType: '' # Type
|
||||
javaScriptStatement: '' # Statement
|
||||
javaScriptFunction: '' # Function
|
||||
javaScriptBraces: 'orange' # Function
|
||||
javaScriptError: '' # Error
|
||||
javaScriptParensError: '' # Error
|
||||
javaScriptNull: 'normal_gray - i' # Keyword
|
||||
javaScriptBoolean: '' # Boolean
|
||||
javaScriptRegexpString: '' # String
|
||||
javaScriptIdentifier: '' # Identifier
|
||||
javaScriptLabel: '' # Label
|
||||
javaScriptException: '' # Exception
|
||||
javaScriptMessage: '' # Keyword
|
||||
javaScriptGlobal: 'lavender - b' # Keyword
|
||||
javaScriptMember: '' # Keyword
|
||||
javaScriptDeprecated: '' # Exception
|
||||
javaScriptReserved: '' # Keyword
|
||||
javaScriptDebug: '' # Debug
|
||||
javaScriptConstant: '' # Label
|
||||
jsBrackets: '@Delimiter'
|
||||
jsClassBraces: '@jsBrackets'
|
||||
jsBraces: '@jsBrackets'
|
||||
jsObjectBraces: '@jsBrackets'
|
||||
jsParens: '@jsBrackets'
|
||||
jsObjectKey: 'blue_gray'
|
||||
jsFuncBraces: '@jsBrackets'
|
||||
jsFuncParens: '@jsBrackets'
|
||||
jsIfElseBraces: '@jsBrackets'
|
||||
jsFuncArgs: 'blue_gray'
|
||||
jsExtendsKeyword: 'yellow'
|
||||
jsArrowFunction: '@Operator'
|
||||
jsFunction: 'yellow'
|
||||
jsRepeat: '@jsFunction'
|
||||
jsReturn: 'yellow'
|
||||
jsClassDefinition: 'normal_gray'
|
||||
jsClassProperty: 'normal_gray'
|
||||
jsClassKeyword: 'yellow'
|
||||
jsClassFuncName: 'normal_gray'
|
||||
jsFuncName: 'normal_gray'
|
||||
jsNull: 'normal_gray - i'
|
||||
jsStorageClass: '@StorageClass'
|
||||
jsObjectSeparator: 'normal_gray'
|
||||
jsObjectValue: 'blue_gray'
|
||||
jsExportDefault: 'blue_gray'
|
||||
jsRegexpCharClass: 'orange'
|
||||
jsTemplateBraces: 'orange'
|
||||
jsThis: 'blue_gray - b'
|
||||
jsFuncCall: 'tan'
|
||||
jsObjectProp: 'normal_gray'
|
||||
jsConditional: 'yellow'
|
||||
jsVariableDef: 'blue_gray'
|
||||
jsFuncBlock: 'white'
|
||||
jsTry: 'yellow'
|
||||
jsCatch: '@jsTry'
|
||||
jsTryCatchBraces: 'orange'
|
||||
jsGlobalObjects: 'lavender - b'
|
||||
jsParen: 'blue_gray'
|
||||
jsParenCatch: '@jsParen'
|
||||
jsParenIfElse: '@jsParen'
|
||||
jsAsyncKeyword: 'tan'
|
||||
jsForAwait: '@jsAsyncKeyword'
|
||||
jsGlobalNodeObjects: 'tan'
|
20
.config/nvim/pack/colors/falcon/estilo/syntax/json.yml
Executable file
20
.config/nvim/pack/colors/falcon/estilo/syntax/json.yml
Executable file
|
@ -0,0 +1,20 @@
|
|||
jsonPadding: '' # Operator
|
||||
jsonString: '' # String
|
||||
jsonTest: '' # Label
|
||||
jsonEscape: '' # Special
|
||||
jsonNumber: '' # Number
|
||||
jsonBraces: '' # Delimiter
|
||||
jsonNull: '' # Function
|
||||
jsonBoolean: 'red' # Boolean
|
||||
jsonKeyword: '' # Label
|
||||
jsonNumError: '' # Error
|
||||
jsonCommentError: '' # Error
|
||||
jsonSemicolonError: '' # Error
|
||||
jsonTrailingCommaError: '' # Error
|
||||
jsonMissingCommaError: '' # Error
|
||||
jsonStringSQError: '' # Error
|
||||
jsonNoQuotesError: '' # Error
|
||||
jsonTripleQuotesError: '' # Error
|
||||
jsonQuote: '' # Quote
|
||||
jsonNoise: '' # Noise
|
||||
jsonKeywordMatch: '@Delimiter'
|
4
.config/nvim/pack/colors/falcon/estilo/syntax/jsx.yml
Executable file
4
.config/nvim/pack/colors/falcon/estilo/syntax/jsx.yml
Executable file
|
@ -0,0 +1,4 @@
|
|||
xmlEqual: 'yellow'
|
||||
xmlEndTag: 'yellow'
|
||||
xmlTagN: 'blue_gray'
|
||||
xmlTagName: 'blue_gray'
|
15
.config/nvim/pack/colors/falcon/estilo/syntax/lsp.yml
Executable file
15
.config/nvim/pack/colors/falcon/estilo/syntax/lsp.yml
Executable file
|
@ -0,0 +1,15 @@
|
|||
LspDiagnosticsDefaultError: 'mid_red - '
|
||||
LspDiagnosticsDefaultWarning: 'mid_yellow -'
|
||||
LspDiagnosticsDefaultInformation: 'mid_gray - '
|
||||
LspDiagnosticsDefaultHint: 'dark_tan -'
|
||||
LspReferenceRead: '- - u'
|
||||
LspReferenceText: '- - u'
|
||||
LspReferenceWrite: '- - u'
|
||||
LspDiagnosticsVirtualTextError: 'mid_red - i'
|
||||
LspDiagnosticsVirtualTextWarning: 'mid_yellow - i'
|
||||
LspDiagnosticsVirtualTextHint: 'dark_tan - i'
|
||||
LspDiagnosticsVirtualTextInformation: 'mid_gray - i'
|
||||
LspDiagnosticsUnderlineError: '- - c mid_red'
|
||||
LspDiagnosticsUnderlineWarning: '- - c mid_yellow'
|
||||
LspDiagnosticsUnderlineHint: '- - c dark_tan'
|
||||
LspDiagnosticsUnderlineInformation: '- - c mid_gray'
|
12
.config/nvim/pack/colors/falcon/estilo/syntax/lua.yml
Executable file
12
.config/nvim/pack/colors/falcon/estilo/syntax/lua.yml
Executable file
|
@ -0,0 +1,12 @@
|
|||
luaFuncKeyword: 'yellow'
|
||||
luaFuncTable: 'normal_gray'
|
||||
luaFuncName: 'normal_gray'
|
||||
luaFuncCall: 'normal_gray'
|
||||
luaFuncArgName: 'blue_gray'
|
||||
luaCond: 'yellow'
|
||||
luaStatement: '@luaCond'
|
||||
luaLocal: '@Constant'
|
||||
luaFuncParens: '@Delimiter'
|
||||
luaParens: '@luaFuncParens'
|
||||
luaBraces: '@luaFuncParens'
|
||||
luaDocTag: 'tan - i'
|
53
.config/nvim/pack/colors/falcon/estilo/syntax/markdown.yml
Executable file
53
.config/nvim/pack/colors/falcon/estilo/syntax/markdown.yml
Executable file
|
@ -0,0 +1,53 @@
|
|||
markdownH1: '' # htmlH1
|
||||
markdownH2: '' # htmlH2
|
||||
markdownH3: '' # htmlH3
|
||||
markdownH4: '' # htmlH4
|
||||
markdownH5: '' # htmlH5
|
||||
markdownH6: '' # htmlH6
|
||||
markdownHeadingRule: '' # markdownRule
|
||||
markdownHeadingDelimiter: '@Delimiter' # Delimiter
|
||||
markdownItemDelimiter: '@Delimiter'
|
||||
markdownInlineDelimiter: 'tan'
|
||||
markdownOrderedListMarker: '@Delimiter' # markdownListMarker
|
||||
markdownListMarker: '@Delimiter' # htmlTagName
|
||||
markdownBlockquote: '' # Comment
|
||||
markdownRule: '' # PreProc
|
||||
markdownLinkText: '' # htmlLink
|
||||
markdownLinkTextDelimiter: '@Delimiter'
|
||||
markdownIdDeclaration: '' # Typedef
|
||||
markdownId: '' # Type
|
||||
markdownAutomaticLink: '' # markdownUrl
|
||||
markdownUrl: 'blue_gray - u' # Float
|
||||
markdownUrlTitle: '' # String
|
||||
markdownIdDelimiter: '' # markdownLinkDelimiter
|
||||
markdownUrlDelimiter: '' # htmlTag
|
||||
markdownUrlTitleDelimiter: '' # Delimiter
|
||||
markdownItalic: '' # htmlItalic
|
||||
markdownBold: '' # htmlBold
|
||||
markdownBoldItalic: '' # htmlBoldItalic
|
||||
markdownCodeDelimiter: 'orange' # Delimiter
|
||||
markdownCode: 'mid_gray_alt'
|
||||
markdownEscape: '' # Special
|
||||
markdownError: '@SpellBad' # Error
|
||||
markdownXmlElement: 'mid_gray'
|
||||
|
||||
htmlH1: 'br_blue - b'
|
||||
htmlH2: 'br_blue -'
|
||||
htmlH3: '@htmlH2'
|
||||
htmlH4: '@htmlH2'
|
||||
htmlH5: '@htmlH2'
|
||||
htmlH6: '@htmlH2'
|
||||
mkdLink: '@Underlined'
|
||||
mkdURL: 'blue_gray - u'
|
||||
mkdInlineURL: 'blue_gray - u'
|
||||
mkdBold: '- - b'
|
||||
htmlBold: '- - b'
|
||||
mkdListItem: '@Delimiter'
|
||||
htmlItalic: '- - i'
|
||||
mkdCode: 'mid_gray_alt'
|
||||
mkdCodeDelimiter: 'orange'
|
||||
mkdHeading: '@Delimiter'
|
||||
|
||||
# These are used when running Neovim health checks.
|
||||
healthSuccess: 'bg green'
|
||||
healthError: 'bg red'
|
2
.config/nvim/pack/colors/falcon/estilo/syntax/neovim.yml
Executable file
2
.config/nvim/pack/colors/falcon/estilo/syntax/neovim.yml
Executable file
|
@ -0,0 +1,2 @@
|
|||
NormalFloat: '- blue_dark_gray'
|
||||
NormalFloatAlt: '- blue_dark_gray_alt'
|
27
.config/nvim/pack/colors/falcon/estilo/syntax/nerdtree.yml
Executable file
27
.config/nvim/pack/colors/falcon/estilo/syntax/nerdtree.yml
Executable file
|
@ -0,0 +1,27 @@
|
|||
NERDTreePart: '' # Special
|
||||
NERDTreePartFile: '' # Type
|
||||
NERDTreeExecFile: '' # Title
|
||||
NERDTreeDirSlash: '' # Identifier
|
||||
NERDTreeBookmarksHeader: '' # statement
|
||||
NERDTreeBookmarksLeader: '' # ignore
|
||||
NERDTreeBookmarkName: '' # Identifier
|
||||
NERDTreeBookmark: '' # normal
|
||||
NERDTreeHelp: '' # String
|
||||
NERDTreeHelpKey: '' # Identifier
|
||||
NERDTreeHelpCommand: '' # Identifier
|
||||
NERDTreeHelpTitle: '' # Macro
|
||||
NERDTreeToggleOn: '' # Question
|
||||
NERDTreeToggleOff: '' # WarningMsg
|
||||
NERDTreeLinkTarget: '' # Type
|
||||
NERDTreeLinkFile: '' # Macro
|
||||
NERDTreeLinkDir: '' # Macro
|
||||
NERDTreeDir: '' # Directory
|
||||
NERDTreeUp: '' # Directory
|
||||
NERDTreeFile: '' # Normal
|
||||
NERDTreeCWD: 'yellow' # Statement
|
||||
NERDTreeOpenable: 'light_blue_gray' # Title
|
||||
NERDTreeClosable: 'light_blue_gray' # Title
|
||||
NERDTreeIgnore: '' # ignore
|
||||
NERDTreeRO: '' # WarningMsg
|
||||
NERDTreeFlags: 'light_blue_gray' # Number
|
||||
NERDTreeGitStatusDirDirty: 'red'
|
1
.config/nvim/pack/colors/falcon/estilo/syntax/netrw.yml
Executable file
1
.config/nvim/pack/colors/falcon/estilo/syntax/netrw.yml
Executable file
|
@ -0,0 +1 @@
|
|||
netrwClassify: 'normal_gray'
|
6
.config/nvim/pack/colors/falcon/estilo/syntax/nvim-cmp.yml
Executable file
6
.config/nvim/pack/colors/falcon/estilo/syntax/nvim-cmp.yml
Executable file
|
@ -0,0 +1,6 @@
|
|||
CmpItemAbbr: 'mid_gray_alt'
|
||||
CmpItemAbbrDeprecated: 'tan'
|
||||
CmpItemAbbrMatch: 'light_gray'
|
||||
CmpItemAbbrMatchFuzzy: 'light_gray'
|
||||
CmpItemKind: 'mid_gray'
|
||||
CmpItemMenu: 'blue_gray'
|
34
.config/nvim/pack/colors/falcon/estilo/syntax/nvim-tree.yml
Executable file
34
.config/nvim/pack/colors/falcon/estilo/syntax/nvim-tree.yml
Executable file
|
@ -0,0 +1,34 @@
|
|||
NvimTreeSymlink: ''
|
||||
NvimTreeFolderName: 'blue_gray'
|
||||
NvimTreeRootFolder: 'light_blue_gray'
|
||||
NvimTreeFolderIcon: 'light_blue_gray'
|
||||
NvimTreeEmptyFolderName: 'blue_gray'
|
||||
NvimTreeOpenedFolderName: 'light_gray'
|
||||
NvimTreeOpenedFile: 'br_blue - u'
|
||||
NvimTreeExecFile: ''
|
||||
NvimTreeSpecialFile: ''
|
||||
NvimTreeImageFile: ''
|
||||
NvimTreeMarkdownFile: ''
|
||||
NvimTreeIndentMarker: ''
|
||||
NvimTreeLspDiagnostics: ''
|
||||
NvimTreeLicenseIcon: ''
|
||||
NvimTreeYamlIcon: ''
|
||||
NvimTreeTomlIcon: ''
|
||||
NvimTreeGitignoreIcon: ''
|
||||
NvimTreeJsonIcon: ''
|
||||
NvimTreeLuaIcon: ''
|
||||
NvimTreePythonIcon: ''
|
||||
NvimTreeShellIcon: ''
|
||||
NvimTreeJavascriptIcon: ''
|
||||
NvimTreeCIcon: ''
|
||||
NvimTreeReactIcon: ''
|
||||
NvimTreeHtmlIcon: ''
|
||||
NvimTreeRustIcon: ''
|
||||
NvimTreeVimIcon: ''
|
||||
NvimTreeTypescriptIcon: ''
|
||||
NvimTreeGitDirty: 'orange'
|
||||
NvimTreeGitStaged: 'orange'
|
||||
NvimTreeGitMerge: 'yellow'
|
||||
NvimTreeGitRenamed: 'yellow'
|
||||
NvimTreeGitNew: 'green'
|
||||
NvimTreeGitDeleted: 'red'
|
63
.config/nvim/pack/colors/falcon/estilo/syntax/php.yml
Executable file
63
.config/nvim/pack/colors/falcon/estilo/syntax/php.yml
Executable file
|
@ -0,0 +1,63 @@
|
|||
phpConstant: '' # Constant
|
||||
phpCoreConstant: '' # Constant
|
||||
phpComment: '' # Comment
|
||||
phpCommentTitle: 'mid_gray_alt - i'
|
||||
phpDocTags: 'dark_tan - i' # PreProc
|
||||
phpDocCustomTags: 'br_blue' # Type
|
||||
phpDocNamespaceSeparator: '@Comment'
|
||||
phpUseNamespaceSeparator: 'light_gray -'
|
||||
phpException: '' # Exception
|
||||
phpBoolean: '@Boolean' # Boolean
|
||||
phpStorageClass: 'orange' # StorageClass
|
||||
phpClasses: 'light_gray'
|
||||
phpStaticClasses: 'normal_gray - b'
|
||||
phpClassImplements: 'normal_gray - i'
|
||||
phpClassExtends: '@phpClassImplements'
|
||||
phpSCKeyword: '' # StorageClass
|
||||
phpFCKeyword: '' # Define
|
||||
phpStructure: 'blue_gray - b' # Structure
|
||||
phpStringSingle: '' # String
|
||||
phpStringDouble: '' # String
|
||||
phpBacktick: '' # String
|
||||
phpNumber: '' # Number
|
||||
phpFloat: '' # Float
|
||||
phpMethod: 'normal_gray' # Function
|
||||
phpFunctions: 'tan' # Function
|
||||
phpBaselib: '' # Function
|
||||
phpRepeat: 'yellow' # Repeat
|
||||
phpConditional: '' # Conditional
|
||||
phpLabel: '' # Label
|
||||
phpStatement: '' # Statement
|
||||
phpKeyword: '@Keyword' # Statement
|
||||
phpType: '@Type' # Type
|
||||
phpInclude: '' # Include
|
||||
phpDefine: '' # Define
|
||||
phpBackslashSequences: '' # SpecialChar
|
||||
phpBackslashDoubleQuote: '' # SpecialChar
|
||||
phpBackslashSingleQuote: '' # SpecialChar
|
||||
phpParent: '@Delimiter' # Delimiter
|
||||
phpBrackets: '' # Delimiter
|
||||
phpIdentifierConst: '' # Delimiter
|
||||
phpParentError: '' # Error
|
||||
phpOctalError: '' # Error
|
||||
phpInterpSimpleError: '' # Error
|
||||
phpInterpBogusDollarCurley: '' # Error
|
||||
phpInterpDollarCurly1: '' # Error
|
||||
phpInterpDollarCurly2: '' # Error
|
||||
phpInterpSimpleBracketsInner: '' # String
|
||||
phpInterpSimpleCurly: '' # Delimiter
|
||||
phpInterpVarname: '' # Identifier
|
||||
phpTodo: '' # Todo
|
||||
phpDocTodo: '' # Todo
|
||||
phpMemberSelector: 'light_gray' # Structure
|
||||
phpIntVar: '' # Identifier
|
||||
phpEnvVar: '' # Identifier
|
||||
phpOperator: '@Operator' # Operator
|
||||
phpVarSelector: 'light_gray' # Operator
|
||||
phpRelation: '' # Operator
|
||||
phpIdentifier: '@Identifier' # Identifier
|
||||
phpIdentifierSimply: '' # Identifier
|
||||
phpStringDelimiter: 'light_gray'
|
||||
phpSuperglobals: 'lavender - b'
|
||||
phpSpecialChar: 'blue_gray - b'
|
||||
phpNullValue: '@Boolean'
|
4
.config/nvim/pack/colors/falcon/estilo/syntax/plug.yml
Executable file
4
.config/nvim/pack/colors/falcon/estilo/syntax/plug.yml
Executable file
|
@ -0,0 +1,4 @@
|
|||
plugDeleted: 'red'
|
||||
plugBracket: 'orange'
|
||||
plug1: 'tan'
|
||||
plug2: 'blue_gray'
|
26
.config/nvim/pack/colors/falcon/estilo/syntax/python.yml
Executable file
26
.config/nvim/pack/colors/falcon/estilo/syntax/python.yml
Executable file
|
@ -0,0 +1,26 @@
|
|||
pythonStatement: 'yellow' # Statement
|
||||
pythonConditional: '' # Conditional
|
||||
pythonRepeat: 'yellow' # Repeat
|
||||
pythonOperator: '' # Operator
|
||||
pythonException: '' # Exception
|
||||
pythonInclude: '' # Include
|
||||
pythonDecorator: '' # Define
|
||||
pythonFunction: 'normal_gray' # Function
|
||||
pythonComment: '' # Comment
|
||||
pythonTodo: '' # Todo
|
||||
pythonString: '' # String
|
||||
pythonRawString: '' # String
|
||||
pythonQuotes: '' # String
|
||||
pythonTripleQuotes: '' # pythonQuotes
|
||||
pythonEscape: '' # Special
|
||||
pythonNumber: '' # Number
|
||||
pythonBuiltin: '' # Function
|
||||
pythonExceptions: '' # Structure
|
||||
pythonSpaceError: '' # Error
|
||||
pythonDoctest: '' # Special
|
||||
pythonDoctestValue: '' # Define
|
||||
pythonExClass: 'tan'
|
||||
pythonBuiltinObj: 'yellow'
|
||||
pythonDot: 'orange'
|
||||
pythonBuiltinFunc: 'tan'
|
||||
pythonNone: '@Boolean'
|
5
.config/nvim/pack/colors/falcon/estilo/syntax/rst.yml
Executable file
5
.config/nvim/pack/colors/falcon/estilo/syntax/rst.yml
Executable file
|
@ -0,0 +1,5 @@
|
|||
rstSections: 'br_blue'
|
||||
rstCodeBlock: 'mid_gray_alt'
|
||||
rstDirective: 'orange'
|
||||
rstHyperlinkTarget: 'blue_gray - u'
|
||||
rstExDirective: 'blue_gray'
|
71
.config/nvim/pack/colors/falcon/estilo/syntax/ruby.yml
Executable file
71
.config/nvim/pack/colors/falcon/estilo/syntax/ruby.yml
Executable file
|
@ -0,0 +1,71 @@
|
|||
rubyClass: 'light_gray' # rubyDefine
|
||||
rubyClassName: '@Normal'
|
||||
rubyModule: 'light_gray' # rubyDefine
|
||||
rubyModuleName: '@Normal'
|
||||
rubyMethodExceptional: '' # rubyDefine
|
||||
rubyDefine: 'yellow' # Define
|
||||
rubyFunction: 'normal_gray' # Function
|
||||
rubyConditional: '' # Conditional
|
||||
rubyConditionalModifier: '' # rubyConditional
|
||||
rubyExceptional: '' # rubyConditional
|
||||
rubyRepeat: '' # Repeat
|
||||
rubyRepeatModifier: '' # rubyRepeat
|
||||
rubyOptionalDo: '' # rubyRepeat
|
||||
rubyControl: 'yellow' # Statement
|
||||
rubyInclude: '' # Include
|
||||
rubyInteger: '' # Number
|
||||
rubyASCIICode: '' # Character
|
||||
rubyFloat: '' # Float
|
||||
rubyBoolean: '' # Boolean
|
||||
rubyException: '' # Exception
|
||||
rubyIdentifier: '' # Identifier
|
||||
rubyClassVariable: '' # rubyIdentifier
|
||||
rubyConstant: 'light_blue_gray' # Type
|
||||
rubyGlobalVariable: 'lavender - b' # rubyIdentifier
|
||||
rubyBlockParameter: '' # rubyIdentifier
|
||||
rubyInstanceVariable: '' # rubyIdentifier
|
||||
rubyPredefinedIdentifier: '' # rubyIdentifier
|
||||
rubyPredefinedConstant: '' # rubyPredefinedIdentifier
|
||||
rubyPredefinedVariable: '' # rubyPredefinedIdentifier
|
||||
rubySymbol: 'blue_gray' # Constant
|
||||
rubyKeyword: '' # Keyword
|
||||
rubyOperator: '' # Operator
|
||||
rubyBeginEnd: '' # Statement
|
||||
rubyAccess: '' # Statement
|
||||
rubyAttribute: '' # Statement
|
||||
rubyEval: '' # Statement
|
||||
rubyPseudoVariable: '' # Constant
|
||||
rubyComment: '' # Comment
|
||||
rubyData: '' # Comment
|
||||
rubyDataDirective: '' # Delimiter
|
||||
rubyDocumentation: '' # Comment
|
||||
rubyTodo: '' # Todo
|
||||
rubyQuoteEscape: '' # rubyStringEscape
|
||||
rubyStringEscape: '' # Special
|
||||
rubyInterpolationDelimiter: '' # Delimiter
|
||||
rubyNoInterpolation: '' # rubyString
|
||||
rubySharpBang: '' # PreProc
|
||||
rubyRegexpDelimiter: '' # rubyStringDelimiter
|
||||
rubySymbolDelimiter: '' # rubyStringDelimiter
|
||||
rubyStringDelimiter: '' # Delimiter
|
||||
rubyHeredoc: '' # rubyString
|
||||
rubyString: '' # String
|
||||
rubyRegexpEscape: '' # rubyRegexpSpecial
|
||||
rubyRegexpQuantifier: '' # rubyRegexpSpecial
|
||||
rubyRegexpAnchor: '' # rubyRegexpSpecial
|
||||
rubyRegexpDot: '' # rubyRegexpCharClass
|
||||
rubyRegexpCharClass: '' # rubyRegexpSpecial
|
||||
rubyRegexpSpecial: '' # Special
|
||||
rubyRegexpComment: '' # Comment
|
||||
rubyRegexp: '' # rubyString
|
||||
rubyInvalidVariable: '' # Error
|
||||
rubyError: '' # Error
|
||||
rubySpaceError: '' # rubyError
|
||||
rubyArrayDelimiter: '@Delimiter'
|
||||
rubyBlockParameterList: 'blue_gray'
|
||||
rubyCurlyBlockDelimiter: '@Delimiter'
|
||||
rubyDoBlock: 'yellow'
|
||||
rubyLocalVariableOrMethod: 'blue_gray'
|
||||
rubyMethodBlock: 'tan'
|
||||
rubyHeredocDelimiter: 'orange'
|
||||
rubyCurlyBlock: 'orange'
|
127
.config/nvim/pack/colors/falcon/estilo/syntax/sh.yml
Executable file
127
.config/nvim/pack/colors/falcon/estilo/syntax/sh.yml
Executable file
|
@ -0,0 +1,127 @@
|
|||
shArithRegion: '' # shShellVariables
|
||||
shAtExpr: '' # shSetList
|
||||
shBeginHere: '' # shRedir
|
||||
shCaseBar: '@Operator' # shConditional
|
||||
shCaseCommandSub: '' # shCommandSub
|
||||
shCaseDoubleQuote: '' # shDoubleQuote
|
||||
shCaseIn: '' # shConditional
|
||||
shQuote: '@Delimiter' # shOperator
|
||||
shCaseSingleQuote: '' # shSingleQuote
|
||||
shCaseStart: '' # shConditional
|
||||
shCmdSubRegion: '' # shShellVariables
|
||||
shColon: '' # shComment
|
||||
shDerefOp: '' # shOperator
|
||||
shDerefPOL: '' # shDerefOp
|
||||
shDerefPPS: '' # shDerefOp
|
||||
shDeref: '' # shShellVariables
|
||||
shDerefDelim: '' # shOperator
|
||||
shDerefSimple: '' # shDeref
|
||||
shDerefSpecial: '' # shDeref
|
||||
shDerefString: '' # shDoubleQuote
|
||||
shDerefVar: '' # shDeref
|
||||
shDoubleQuote: '' # shString
|
||||
shEcho: '' # shString
|
||||
shEchoDelim: '' # shOperator
|
||||
shEchoQuote: '' # shString
|
||||
shForPP: '' # shLoop
|
||||
shEmbeddedEcho: '' # shString
|
||||
shEscape: '' # shCommandSub
|
||||
shExDoubleQuote: '' # shDoubleQuote
|
||||
shExSingleQuote: '' # shSingleQuote
|
||||
shFunction: 'normal_gray' # Function
|
||||
shHereDoc: '' # shString
|
||||
shHerePayload: '' # shHereDoc
|
||||
shLoop: '@Function' # shStatement
|
||||
shMoreSpecial: '' # shSpecial
|
||||
shOption: '' # shCommandSub
|
||||
shPattern: '' # shString
|
||||
shParen: '' # shArithmetic
|
||||
shPosnParm: '' # shShellVariables
|
||||
shQuickComment: '' # shComment
|
||||
shRange: '' # shOperator
|
||||
shRedir: '' # shOperator
|
||||
shSetListDelim: '' # shOperator
|
||||
shSetOption: '' # shOption
|
||||
shSingleQuote: '' # shString
|
||||
shSource: '' # shOperator
|
||||
shStringSpecial: '' # shSpecial
|
||||
shSubShRegion: '' # shOperator
|
||||
shTestOpr: '@Operator' # shConditional
|
||||
shTestPattern: '' # shString
|
||||
shTestDoubleQuote: '' # shString
|
||||
shTestSingleQuote: '' # shString
|
||||
shVariable: 'blue_gray' # shSetList
|
||||
shWrapLineOperator: '' # shOperator
|
||||
bashAdminStatement: '' # shStatement if exists("b:is_bash")
|
||||
bashSpecialVariables: 'blue_gray' # shShellVariables if exists("b:is_bash")
|
||||
bashStatement: '' # shStatement if exists("b:is_bash")
|
||||
shFunctionParen: '' # Delimiter if exists("b:is_bash")
|
||||
shFunctionDelim: '' # Delimiter if exists("b:is_bash")
|
||||
kshSpecialVariables: '' # shShellVariables if exists("b:is_kornshell")
|
||||
kshStatement: '' # shStatement if exists("b:is_kornshell")
|
||||
shCaseError: '' # Error if !exists("g:sh_no_error")
|
||||
shCondError: '' # Error if !exists("g:sh_no_error")
|
||||
shCurlyError: '' # Error if !exists("g:sh_no_error")
|
||||
shDerefError: '' # Error if !exists("g:sh_no_error")
|
||||
shDerefOpError: '' # Error if !exists("g:sh_no_error")
|
||||
shDerefWordError: '' # Error if !exists("g:sh_no_error")
|
||||
shDoError: '' # Error if !exists("g:sh_no_error")
|
||||
shEsacError: '' # Error if !exists("g:sh_no_error")
|
||||
shIfError: '' # Error if !exists("g:sh_no_error")
|
||||
shInError: '' # Error if !exists("g:sh_no_error")
|
||||
shParenError: '' # Error if !exists("g:sh_no_error")
|
||||
shTestError: '' # Error if !exists("g:sh_no_error")
|
||||
shDTestError: '' # Error if exists("b:is_kornshell")
|
||||
shArithmetic: '' # Special
|
||||
shCharClass: '' # Identifier
|
||||
shSnglCase: '@Delimiter' # Statement
|
||||
shCommandSub: '' # Special
|
||||
shComment: '' # Comment
|
||||
shConditional: '' # Conditional
|
||||
shCtrlSeq: '' # Special
|
||||
shExprRegion: '' # Delimiter
|
||||
shFunctionKey: '' # Function
|
||||
shFunctionName: '' # Function
|
||||
shNumber: '' # Number
|
||||
shOperator: '' # Operator
|
||||
shRepeat: '' # Repeat
|
||||
shSetList: 'light_blue_gray' # Identifier
|
||||
shShellVariables: '' # PreProc
|
||||
shSpecial: '' # Special
|
||||
shStatement: 'normal_gray' # Statement
|
||||
shSet: '@shStatement' # Statement
|
||||
shString: '' # String
|
||||
shTodo: '' # Todo
|
||||
shAlias: '' # Identifier
|
||||
shHereDoc01: '' # shRedir
|
||||
shHereDoc02: '' # shRedir
|
||||
shHereDoc03: '' # shRedir
|
||||
shHereDoc04: '' # shRedir
|
||||
shHereDoc05: '' # shRedir
|
||||
shHereDoc06: '' # shRedir
|
||||
shHereDoc07: '' # shRedir
|
||||
shHereDoc08: '' # shRedir
|
||||
shHereDoc09: '' # shRedir
|
||||
shHereDoc10: '' # shRedir
|
||||
shHereDoc11: '' # shRedir
|
||||
shHereDoc12: '' # shRedir
|
||||
shHereDoc13: '' # shRedir
|
||||
shHereDoc14: '' # shRedir
|
||||
shHereDoc15: '' # shRedir
|
||||
shHereDoc16: '' # shRedir
|
||||
shHereDoc17: '' # shRedir
|
||||
shHereDoc18: '' # shRedir
|
||||
shHereDoc19: '' # shRedir
|
||||
shHereDoc20: '' # shRedir
|
||||
shHereDoc21: '' # shRedir
|
||||
shHereDoc22: '' # shRedir
|
||||
shHereDoc23: '' # shRedir
|
||||
shHereDoc24: '' # shRedir
|
||||
shHereDoc25: '' # shRedir
|
||||
shHereDoc26: '' # shRedir
|
||||
shHereDoc27: '' # shRedir
|
||||
shHereDoc28: '' # shRedir
|
||||
shHereDoc29: '' # shRedir
|
||||
shHereDoc30: '' # shRedir
|
||||
shHereDoc31: '' # shRedir
|
||||
shHereDoc32: '' # shRedir
|
3
.config/nvim/pack/colors/falcon/estilo/syntax/sneak.yml
Executable file
3
.config/nvim/pack/colors/falcon/estilo/syntax/sneak.yml
Executable file
|
@ -0,0 +1,3 @@
|
|||
Sneak: 'white dark_indigo'
|
||||
SneakLabel: 'white dark_indigo'
|
||||
SneakScope: 'white -'
|
11
.config/nvim/pack/colors/falcon/estilo/syntax/sql.yml
Executable file
11
.config/nvim/pack/colors/falcon/estilo/syntax/sql.yml
Executable file
|
@ -0,0 +1,11 @@
|
|||
sqlStatement: '@Function'
|
||||
sqlKeyword: 'tan'
|
||||
sqlSpecial: '@Number'
|
||||
sqlType: 'blue_gray'
|
||||
sqlFunction: '@Title'
|
||||
mysqlKeyword: '@sqlKeyword'
|
||||
mysqlOperator: '@Operator'
|
||||
mysqlFunction: '@sqlType'
|
||||
mysqlStatement: '@sqlStatement'
|
||||
mysqlType: '@sqlType'
|
||||
Quote: '@Delimiter'
|
4
.config/nvim/pack/colors/falcon/estilo/syntax/sshconfig.yml
Executable file
4
.config/nvim/pack/colors/falcon/estilo/syntax/sshconfig.yml
Executable file
|
@ -0,0 +1,4 @@
|
|||
sshconfigKeyword: 'blue_gray'
|
||||
sshconfigMatch: 'blue_gray'
|
||||
sshconfigYesNo: 'red'
|
||||
sshconfigLogLevel: 'tan'
|
6
.config/nvim/pack/colors/falcon/estilo/syntax/startify.yml
Executable file
6
.config/nvim/pack/colors/falcon/estilo/syntax/startify.yml
Executable file
|
@ -0,0 +1,6 @@
|
|||
StartifySlash: 'mid_gray'
|
||||
StartifyPath: 'mid_gray'
|
||||
StartifyHeader: 'indigo'
|
||||
StartifyFile: 'normal_gray'
|
||||
StartifySection: 'yellow'
|
||||
StartifyNumber: 'blue_gray'
|
12
.config/nvim/pack/colors/falcon/estilo/syntax/tagbar.yml
Executable file
12
.config/nvim/pack/colors/falcon/estilo/syntax/tagbar.yml
Executable file
|
@ -0,0 +1,12 @@
|
|||
TagbarComment: 'dark_gray -'
|
||||
TagbarKind: 'blue_gray -'
|
||||
TagbarNestedKind: 'blue_gray -'
|
||||
TagbarScope: 'tan'
|
||||
TagbarType: 'light_gray -'
|
||||
TagbarSignature: 'normal_gray -'
|
||||
TagbarPseudoID: 'normal_gray -'
|
||||
TagbarFoldIcon: 'mid_gray -'
|
||||
TagbarHighlight: 'normal_gray -'
|
||||
TagbarVisibilityPublic: 'green -'
|
||||
TagbarVisibilityProtected: 'orange -'
|
||||
TagbarVisibilityPrivate: 'red -'
|
4
.config/nvim/pack/colors/falcon/estilo/syntax/tmux.yml
Executable file
4
.config/nvim/pack/colors/falcon/estilo/syntax/tmux.yml
Executable file
|
@ -0,0 +1,4 @@
|
|||
tmuxCmds: 'yellow'
|
||||
tmuxOptsSet: 'blue_gray'
|
||||
tmuxOptions: 'orange'
|
||||
tmuxOptsSetw: 'blue_gray'
|
11
.config/nvim/pack/colors/falcon/estilo/syntax/treesitter.yml
Executable file
11
.config/nvim/pack/colors/falcon/estilo/syntax/treesitter.yml
Executable file
|
@ -0,0 +1,11 @@
|
|||
TSKeyword: '@Keyword'
|
||||
TSVariable: '@Identifier'
|
||||
TSMethod: 'normal_gray'
|
||||
TSVariableBuiltin: '@Type'
|
||||
TSFunction: '@Keyword'
|
||||
TSOperator: '@Operator'
|
||||
TSConstructor: 'normal_gray - b'
|
||||
TSException: '@Keyword'
|
||||
TSConstant: '@Constant'
|
||||
TSConstBuiltin: '@Boolean'
|
||||
TSError: 'yellow'
|
9
.config/nvim/pack/colors/falcon/estilo/syntax/twig.yml
Executable file
9
.config/nvim/pack/colors/falcon/estilo/syntax/twig.yml
Executable file
|
@ -0,0 +1,9 @@
|
|||
twigVarDelim: '@Delimiter'
|
||||
twigTagDelim: '@Delimiter'
|
||||
htmlEndTag: 'yellow'
|
||||
twigString: 'light_gray'
|
||||
twigOperator: 'orange'
|
||||
twigTagBlock: 'yellow'
|
||||
htmlLink: 'blue_gray'
|
||||
twigVariable: '@Identifier'
|
||||
twigFilter: 'tan'
|
7
.config/nvim/pack/colors/falcon/estilo/syntax/ultisnips.yml
Executable file
7
.config/nvim/pack/colors/falcon/estilo/syntax/ultisnips.yml
Executable file
|
@ -0,0 +1,7 @@
|
|||
snipSnippetHeaderKeyword: 'yellow'
|
||||
snipSnippetFooterKeyword: '@snipSnippetHeaderKeyword'
|
||||
snipTabStop: '@Identifier'
|
||||
snipTabStopDefault: 'blue_gray - i'
|
||||
snipMirror: '@snipTabStop'
|
||||
snipSnippetTrigger: '@String'
|
||||
snipSnippetDocContextString: '@Comment'
|
4
.config/nvim/pack/colors/falcon/estilo/syntax/vdebug.yml
Executable file
4
.config/nvim/pack/colors/falcon/estilo/syntax/vdebug.yml
Executable file
|
@ -0,0 +1,4 @@
|
|||
DbgBreakptLine: '- off_blue'
|
||||
DbgBreakptSign: 'off_blue -'
|
||||
DbgCurrentLine: '- off_red'
|
||||
DbgCurrentSign: 'off_red -'
|
5
.config/nvim/pack/colors/falcon/estilo/syntax/vim-gitgutter.yml
Executable file
5
.config/nvim/pack/colors/falcon/estilo/syntax/vim-gitgutter.yml
Executable file
|
@ -0,0 +1,5 @@
|
|||
# GitGutter airblade/vim-gitgutter
|
||||
GitGutterAdd: 'green -'
|
||||
GitGutterChange: 'yellow -'
|
||||
GitGutterDelete: 'red -'
|
||||
GitGutterChangeDelete: 'orange -'
|
1
.config/nvim/pack/colors/falcon/estilo/syntax/vim-signature.yml
Executable file
1
.config/nvim/pack/colors/falcon/estilo/syntax/vim-signature.yml
Executable file
|
@ -0,0 +1 @@
|
|||
SignatureMarkText: 'blue_gray'
|
1
.config/nvim/pack/colors/falcon/estilo/syntax/vim.yml
Executable file
1
.config/nvim/pack/colors/falcon/estilo/syntax/vim.yml
Executable file
|
@ -0,0 +1 @@
|
|||
Terminal: 'normal_gray bg'
|
3
.config/nvim/pack/colors/falcon/estilo/syntax/vimagit.yml
Executable file
3
.config/nvim/pack/colors/falcon/estilo/syntax/vimagit.yml
Executable file
|
@ -0,0 +1,3 @@
|
|||
titleEntry: 'yellow'
|
||||
diffRemoved: '@DiffDelete'
|
||||
diffAdded: '@DiffAdd'
|
19
.config/nvim/pack/colors/falcon/estilo/syntax/viml.yml
Executable file
19
.config/nvim/pack/colors/falcon/estilo/syntax/viml.yml
Executable file
|
@ -0,0 +1,19 @@
|
|||
vimCommentTitle: 'light_gray - i'
|
||||
vimCommand: 'tan'
|
||||
vimVar: 'blue_gray'
|
||||
vimLet: 'yellow'
|
||||
vimNotFunc: 'yellow'
|
||||
vimIsCommand: 'yellow'
|
||||
vimOperParen: '@Delimiter'
|
||||
vimFuncVar: 'blue_gray - b'
|
||||
vimFuncName: 'normal_gray'
|
||||
vimAutoEvent: 'red'
|
||||
vimMap: 'blue_gray'
|
||||
vimGroup: 'blue_gray'
|
||||
vimHiTerm: 'blue_gray'
|
||||
vimSetSep: 'normal_gray'
|
||||
vimHighlight: '@vimLet'
|
||||
vimSetEqual: 'orange'
|
||||
vimNotation: 'normal_gray'
|
||||
vimMapLhs: 'tan'
|
||||
vimMapRhs: 'light_blue_gray'
|
17
.config/nvim/pack/colors/falcon/estilo/syntax/vimwiki.yml
Executable file
17
.config/nvim/pack/colors/falcon/estilo/syntax/vimwiki.yml
Executable file
|
@ -0,0 +1,17 @@
|
|||
VimwikiLink: '@Underlined'
|
||||
VimwikiHeaderChar: '@Delimiter'
|
||||
VimwikiHeader1: 'br_blue - b'
|
||||
VimwikiHeader2: 'br_blue -'
|
||||
VimwikiHeader3: '@VimwikiHeader2'
|
||||
VimwikiHeader4: '@VimwikiHeader2'
|
||||
VimwikiHeader5: '@VimwikiHeader2'
|
||||
VimwikiHeader6: '@VimwikiHeader2'
|
||||
VimwikiList: '@Delimiter'
|
||||
# preformatted block, unfortunately not just the fence but all the code too
|
||||
VimwikiPre: 'mid_gray_alt'
|
||||
# inline
|
||||
VimwikiCode: 'mid_gray_alt'
|
||||
VimwikiCodeChar: 'orange'
|
||||
VimwikiMarkers: 'tan'
|
||||
VimwikiBold: '- - b'
|
||||
VimwikiItalic: '- - i'
|
2
.config/nvim/pack/colors/falcon/estilo/syntax/vista.yml
Executable file
2
.config/nvim/pack/colors/falcon/estilo/syntax/vista.yml
Executable file
|
@ -0,0 +1,2 @@
|
|||
VistaTag: 'normal_gray -'
|
||||
VistaPrefix: 'mid_dark_gray'
|
6
.config/nvim/pack/colors/falcon/estilo/syntax/xml.yml
Executable file
6
.config/nvim/pack/colors/falcon/estilo/syntax/xml.yml
Executable file
|
@ -0,0 +1,6 @@
|
|||
xmlEndTag: 'blue_gray'
|
||||
xmlEqual: '@Operator'
|
||||
xmlTagName: 'light_blue_gray'
|
||||
xmlAttrib: 'blue_gray'
|
||||
xmlTag: 'normal_gray'
|
||||
xmlProcessingDelim: 'orange'
|
34
.config/nvim/pack/colors/falcon/estilo/syntax/yaml.yml
Executable file
34
.config/nvim/pack/colors/falcon/estilo/syntax/yaml.yml
Executable file
|
@ -0,0 +1,34 @@
|
|||
yamlTodo: '' # Todo
|
||||
yamlComment: '' # Comment
|
||||
yamlDocumentStart: '' # PreProc
|
||||
yamlDocumentEnd: '' # PreProc
|
||||
yamlDirectiveName: '' # Keyword
|
||||
yamlTAGDirective: '' # yamlDirectiveName
|
||||
yamlTagHandle: '' # String
|
||||
yamlTagPrefix: '' # String
|
||||
yamlYAMLDirective: '' # yamlDirectiveName
|
||||
yamlReservedDirective: '' # Error
|
||||
yamlYAMLVersion: '' # Number
|
||||
yamlString: '' # String
|
||||
yamlFlowString: '' # yamlString
|
||||
yamlFlowStringDelimiter: 'normal_gray' # yamlString
|
||||
yamlEscape: '' # SpecialChar
|
||||
yamlSingleEscape: '' # SpecialChar
|
||||
yamlBlockCollectionItemStart: 'orange' # Label
|
||||
yamlBlockMappingKey: 'blue_gray' # Identifier
|
||||
yamlBlockMappingMerge: '' # Special
|
||||
yamlFlowMappingKey: 'normal_gray' # Identifier
|
||||
yamlFlowMappingMerge: '' # Special
|
||||
yamlMappingKeyStart: '' # Special
|
||||
yamlFlowIndicator: '@Delimiter' # Special
|
||||
yamlKeyValueDelimiter: '@Delimiter' # Special
|
||||
yamlConstant: '' # Constant
|
||||
yamlNull: 'normal_gray - i' # yamlConstant
|
||||
yamlBool: '@Number' # yamlConstant
|
||||
yamlAnchor: '' # Type
|
||||
yamlAlias: '' # Type
|
||||
yamlNodeTag: '' # Type
|
||||
yamlInteger: '' # Number
|
||||
yamlFloat: '' # Float
|
||||
yamlTimestamp: '' # Number
|
||||
yamlPlainScalar: 'normal_gray'
|
9
.config/nvim/pack/colors/falcon/estilo/syntax/zsh.yml
Executable file
9
.config/nvim/pack/colors/falcon/estilo/syntax/zsh.yml
Executable file
|
@ -0,0 +1,9 @@
|
|||
zshCommands: 'yellow'
|
||||
zshBrackets: '@Delimiter'
|
||||
zshOptStart: 'orange'
|
||||
zshVariableDef: 'blue_gray'
|
||||
zshTypes: '@Type'
|
||||
zshKeyword: '@Keyword'
|
||||
zshStringDelimiter: '@Delimiter'
|
||||
zshDelimiter: '@Delimiter'
|
||||
zshParentheses: '@Delimiter'
|
20
.config/nvim/pack/colors/falcon/exa/EXA_COLORS
Executable file
20
.config/nvim/pack/colors/falcon/exa/EXA_COLORS
Executable file
|
@ -0,0 +1,20 @@
|
|||
# di directories
|
||||
# ex executable files
|
||||
# fi regular files
|
||||
# ln symlinks
|
||||
# ur,uw,ux user permissions
|
||||
# gr,gw,gx group permissions
|
||||
# tr,tw,tx others permissions
|
||||
# sn the numbers of a file's size
|
||||
# sb the units of a file's size
|
||||
# uu user that is you
|
||||
# un user that is someone else
|
||||
# gu a group that you belong to
|
||||
# gn a group you aren't a member of
|
||||
# ga new file in Git
|
||||
# gm a modified file in Git
|
||||
# gd a deleted file in Git
|
||||
# gv a renamed file in Git
|
||||
# da a file's date
|
||||
# xa is the special attribute
|
||||
export EXA_COLORS="uu=38;5;249:un=38;5;241:gu=38;5;245:gn=38;5;241:da=38;5;245:sn=38;5;7:sb=38;5;7:ur=38;5;3;1:uw=38;5;5;1:ux=38;5;1;1:ue=38;5;1;1:gr=38;5;249:gw=38;5;249:gx=38;5;249:tr=38;5;249:tw=38;5;249:tx=38;5;249:fi=38;5;248:di=38;5;253:ex=38;5;1:xa=38;5;12:*.png=38;5;4:*.jpg=38;5;4:*.gif=38;5;4"
|
344
.config/nvim/pack/colors/falcon/iterm2/falcon.itermcolors
Executable file
344
.config/nvim/pack/colors/falcon/iterm2/falcon.itermcolors
Executable file
|
@ -0,0 +1,344 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>Ansi 0 Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.015686275437474251</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.0</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.0</real>
|
||||
</dict>
|
||||
<key>Ansi 1 Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.0</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.21176470816135406</real>
|
||||
<key>Red Component</key>
|
||||
<real>1</real>
|
||||
</dict>
|
||||
<key>Ansi 10 Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.45882353186607361</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.74901962280273438</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.69411766529083252</real>
|
||||
</dict>
|
||||
<key>Ansi 11 Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.57254904508590698</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.82745099067687988</real>
|
||||
<key>Red Component</key>
|
||||
<real>1</real>
|
||||
</dict>
|
||||
<key>Ansi 12 Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.73725491762161255</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.64313727617263794</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.60000002384185791</real>
|
||||
</dict>
|
||||
<key>Ansi 13 Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.48235294222831726</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.69019609689712524</real>
|
||||
<key>Red Component</key>
|
||||
<real>1</real>
|
||||
</dict>
|
||||
<key>Ansi 14 Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.74901962280273438</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.80000001192092896</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.5215686559677124</real>
|
||||
</dict>
|
||||
<key>Ansi 15 Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>1</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.97254902124404907</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.97254902124404907</real>
|
||||
</dict>
|
||||
<key>Ansi 2 Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.24705882370471954</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.55686277151107788</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.44313725829124451</real>
|
||||
</dict>
|
||||
<key>Ansi 3 Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.32156863808631897</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.77254903316497803</real>
|
||||
<key>Red Component</key>
|
||||
<real>1</real>
|
||||
</dict>
|
||||
<key>Ansi 4 Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.58823531866073608</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.31764706969261169</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.38823530077934265</real>
|
||||
</dict>
|
||||
<key>Ansi 5 Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.10196078568696976</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.46274510025978088</real>
|
||||
<key>Red Component</key>
|
||||
<real>1</real>
|
||||
</dict>
|
||||
<key>Ansi 6 Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.64313727617263794</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.74901962280273438</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.20392157137393951</real>
|
||||
</dict>
|
||||
<key>Ansi 7 Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.72549021244049072</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.70588237047195435</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.70588237047195435</real>
|
||||
</dict>
|
||||
<key>Ansi 8 Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.12941177189350128</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.0078431377187371254</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.0078431377187371254</real>
|
||||
</dict>
|
||||
<key>Ansi 9 Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.47058823704719543</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.55686277151107788</real>
|
||||
<key>Red Component</key>
|
||||
<real>1</real>
|
||||
</dict>
|
||||
<key>Background Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.12941177189350128</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.0078431377187371254</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.0078431377187371254</real>
|
||||
</dict>
|
||||
<key>Badge Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>0.5</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.054901950061321259</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.36470580101013184</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.83921569585800171</real>
|
||||
</dict>
|
||||
<key>Bold Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>1</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.97254902124404907</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.97254902124404907</real>
|
||||
</dict>
|
||||
<key>Cursor Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.75294119119644165</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.90980392694473267</real>
|
||||
<key>Red Component</key>
|
||||
<real>1</real>
|
||||
</dict>
|
||||
<key>Cursor Guide Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.21176469326019287</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.21960783004760742</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.23529419302940369</real>
|
||||
</dict>
|
||||
<key>Cursor Text Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.12941177189350128</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.08235294371843338</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.08235294371843338</real>
|
||||
</dict>
|
||||
<key>Foreground Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.72549021244049072</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.70588237047195435</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.70588237047195435</real>
|
||||
</dict>
|
||||
<key>Link Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>1</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.85490196943283081</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.74901962280273438</real>
|
||||
</dict>
|
||||
<key>Selected Text Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.89803922176361084</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.87450981140136719</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.87450981140136719</real>
|
||||
</dict>
|
||||
<key>Selection Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.50980395078659058</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.054901961237192154</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.18431372940540314</real>
|
||||
</dict>
|
||||
</dict>
|
||||
</plist>
|
45
.config/nvim/pack/colors/falcon/kitty/kitty.falcon.conf
Executable file
45
.config/nvim/pack/colors/falcon/kitty/kitty.falcon.conf
Executable file
|
@ -0,0 +1,45 @@
|
|||
# falcon colour scheme
|
||||
|
||||
cursor #ffe8c0
|
||||
cursor_text_color #151521
|
||||
|
||||
url_color #bfdaff
|
||||
|
||||
foreground #b4b4b9
|
||||
background #020221
|
||||
|
||||
selection_foreground #dfdfe5
|
||||
selection_background #2d1078
|
||||
|
||||
#: black
|
||||
color0 #000004
|
||||
color8 #020221
|
||||
|
||||
#: red
|
||||
color1 #ff3600
|
||||
color9 #ff8e78
|
||||
|
||||
#: green
|
||||
color2 #718e3f
|
||||
color10 #b1bf75
|
||||
|
||||
#: yellow
|
||||
color3 #ffc552
|
||||
color11 #ffd392
|
||||
|
||||
#: blue
|
||||
color4 #635196
|
||||
color12 #99a4bc
|
||||
|
||||
#: magenta
|
||||
color5 #ff761a
|
||||
color13 #ffb07b
|
||||
|
||||
#: cyan
|
||||
color6 #34bfa4
|
||||
color14 #85ccbf
|
||||
|
||||
#: white
|
||||
color7 #b4b4b9
|
||||
color15 #f8f8ff
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user