diff options
author | ensa <@> | 2023-02-04 20:03:47 -0800 |
---|---|---|
committer | ensa <@> | 2023-02-04 20:52:52 -0800 |
commit | 75ee668954833ab6ba9287ed5eb16a9957edcac2 (patch) | |
tree | 07d9f88939ab0fd93d93c6f4ddbbc7b548a812f0 /config/vis | |
parent | ebae3707b36e9a83014ef08271d75bd9826bb999 (diff) | |
download | cfg-75ee668954833ab6ba9287ed5eb16a9957edcac2.tar.gz |
restructure, cleanups, greener pastures, new additions
config and data are now etc and share, to better match my homedir bin: generally, shellcheck errors (where there's actually a problem) have been fixed bother now includes alternate support for libnotify as well as my notif comm-sel now loops, so spawning programs doesn't require multiple runs fcard: my flashcard script accepts a tsv's path on $1, expecting: the word on column 1 the defintion on column 2 (optional) the section on column 3 if $2 is specified, only runs through lines with that string as its section fl: added aesgcm to the url detector string, because of profanity cleaned up urlparse now outputs the urls, one per line, making it more unixy flc: a quick script. uses fl's output to do what fl once did on its own. kbsetup now lacks escape xcape magic, qmk does that for me now. lh: general cleanup. added and removed a site for the video extract section metamv: gives arguments self-describing names based off metadata. mainly just for sorting FLACs off bandcamp this might not be entirely safe. use your own discretion. notif: xnotify wasn't happy with the previous design. it was sending notifications in pieces. this new one's an absolute mess but it works well, is smaller, and faster op: changed the pdf bit to allow variants smv: file is self-explanatory applies the pipeline specified in "$1" to every file name specified after it xbg: contains a fallback if xwallpaper isn't downloaded or its path is empty. yw: just a quick and dirty line for watching things in mpv using yt-dlp. etc: X11/: xprofile now includes the latest xnotify initialization. xresources prevents a variable collision also updates new xnotify resource names and changes which program to pipe the screen to. mpd/mpd.conf just updates to path structure. yt-dlp/* too many changes to describe. should be fairly self-explanatory. ksh/: prompt.ksh: the $ is green now. hooray! lf/lfrc: removed ttmsh function. i use my server for that now. newsboat/config: external-url-viewer is now non-python. zathura/zathurarc: font is now hermit. aliasrc: exa is no more. vis is also no more. youtube-dl is dead. long live yt-dlp. shrc: locale vars changed to ones than glibc is ok with
Diffstat (limited to 'config/vis')
-rw-r--r-- | config/vis/themes/causalagency.lua | 63 | ||||
-rw-r--r-- | config/vis/visrc.lua | 16 |
2 files changed, 0 insertions, 79 deletions
diff --git a/config/vis/themes/causalagency.lua b/config/vis/themes/causalagency.lua deleted file mode 100644 index 723328a..0000000 --- a/config/vis/themes/causalagency.lua +++ /dev/null @@ -1,63 +0,0 @@ --- uses 24-bit color values, based off causalagency's scheme -local lexers = vis.lexers - -local colors = { - ['black'] = '#16150e', - ['red'] = '#a32810', - ['green'] = '#727a18', - ['brown'] = '#a37720', - ['blue'] = '#3d6266', - ['purp'] = '#7a4955', - ['cyan'] = '#557a55', - ['ligrey'] = '#8e8463', - ['dagrey'] = '#4c4635', - ['lired'] = '#cc3214', - ['ligreen'] = '#8e991e', - ['yellow'] = '#cc9528', - ['liblue'] = '#4c7b7f', - ['lipurp'] = '#995b6b', - ['licyan'] = '#6b996b', - ['white'] = '#ccbc8e', - ['back'] = '#14130e', - ['fore'] = '#b7a980', - ['sel'] = '#a34110', - ['curs'] = '#72694f', -} - -local fg = ',fore:'..colors.fore..',' -local bg = ',back:'..colors.back..',' - -lexers.STYLE_DEFAULT = bg..fg -lexers.STYLE_NOTHING = bg -lexers.STYLE_CLASS = 'fore:'..colors.yellow -lexers.STYLE_COMMENT = 'fore:'..colors.ligrey..',italics' -lexers.STYLE_CONSTANT = 'fore:'..colors.cyan -lexers.STYLE_DEFINITION = 'fore:'..colors.blue -lexers.STYLE_ERROR = 'back:'..colors.lired..fg..',italics' -lexers.STYLE_FUNCTION = 'fore:'..colors.cyan -lexers.STYLE_KEYWORD = 'fore:'..colors.liblue -lexers.STYLE_LABEL = 'fore:'..colors.yellow -lexers.STYLE_NUMBER = 'fore:'..colors.cyan -lexers.STYLE_OPERATOR = 'fore:'..colors.ligrey -lexers.STYLE_REGEX = 'fore:'..colors.ligreen -lexers.STYLE_STRING = 'fore:'..colors.cyan -lexers.STYLE_PREPROCESSOR = 'fore:'..colors.green -lexers.STYLE_TAG = 'fore:'..colors.green -lexers.STYLE_TYPE = 'fore:'..colors.licyan -lexers.STYLE_VARIABLE = 'fore:'..colors.licyan -lexers.STYLE_WHITESPACE = 'fore:'..colors.dagrey -lexers.STYLE_EMBEDDED = 'back:'..colors.lipurp -lexers.STYLE_IDENTIFIER = 'fore:'..colors.green - -lexers.STYLE_LINENUMBER = 'fore:'..colors.dagrey -lexers.STYLE_LINENUMBER_CURSOR = 'back:'..colors.back..',fore:'..colors.ligrey -lexers.STYLE_CURSOR = 'fore:'..colors.curs..',reverse' -lexers.STYLE_CURSOR_PRIMARY = lexers.STYLE_CURSOR..',bold' -lexers.STYLE_CURSOR_LINE = 'fore:'..colors.dagrey -lexers.STYLE_COLOR_COLUMN = 'back:'..colors.dagrey -lexers.STYLE_SELECTION = 'back:'..colors.sel -lexers.STYLE_STATUS = 'fore:'..colors.ligrey..',back:'..colors.black -lexers.STYLE_STATUS_FOCUSED = 'fore:'..colors.dagrey..',back:'..colors.white -lexers.STYLE_SEPARATOR = lexers.STYLE_DEFAULT -lexers.STYLE_INFO = lexers.STYLE_DEFAULT..',bold' -lexers.STYLE_EOF = '' diff --git a/config/vis/visrc.lua b/config/vis/visrc.lua deleted file mode 100644 index 569e482..0000000 --- a/config/vis/visrc.lua +++ /dev/null @@ -1,16 +0,0 @@ --- load standard vis module, providing parts of the Lua API -require('vis') -require('ctags') - -vis.events.subscribe(vis.events.INIT, function() - -- Your global configuration options - vis:command('set theme causalagency') - vis:command('map insert <M-Escape> <Escape>') -end) - -vis.events.subscribe(vis.events.WIN_OPEN, function(win) - -- Your per window configuration options e.g. - vis:command('set cul') - vis:command('set nu') - vis:command('set ai') -end) |