.
This commit is contained in:
parent
dbfff6c594
commit
c6f9219e32
5 changed files with 60 additions and 8 deletions
|
|
@ -2,8 +2,8 @@
|
||||||
fontname=Iosevka 14
|
fontname=Iosevka 14
|
||||||
selchars=-A-Za-z0-9,./?%&#:_
|
selchars=-A-Za-z0-9,./?%&#:_
|
||||||
scrollback=1000
|
scrollback=1000
|
||||||
bgcolor=rgb(0,0,0)
|
bgcolor=rgb(246,245,244)
|
||||||
fgcolor=rgb(222,221,218)
|
fgcolor=rgb(0,0,0)
|
||||||
palette_color_0=rgb(0,0,0)
|
palette_color_0=rgb(0,0,0)
|
||||||
palette_color_1=rgb(192,28,40)
|
palette_color_1=rgb(192,28,40)
|
||||||
palette_color_2=rgb(0,170,0)
|
palette_color_2=rgb(0,170,0)
|
||||||
|
|
|
||||||
49
files/.config/vis/themes/minimal-light.lua
Normal file
49
files/.config/vis/themes/minimal-light.lua
Normal file
|
|
@ -0,0 +1,49 @@
|
||||||
|
-- vis-minimal-theme (https://github.com/erf/vis-minimal-theme)
|
||||||
|
-- light by Erlend Lind Madsen
|
||||||
|
-- uses a black background and a white foreground
|
||||||
|
|
||||||
|
local black0 = '#000000'
|
||||||
|
local black1 = '#383838'
|
||||||
|
local black2 = '#686868'
|
||||||
|
|
||||||
|
local white0 = '#ffffff'
|
||||||
|
local white1 = '#c8c8c8'
|
||||||
|
local white2 = '#989898'
|
||||||
|
|
||||||
|
local lexers = vis.lexers
|
||||||
|
|
||||||
|
lexers.STYLE_DEFAULT ='back:'..white0..',fore:'..black0
|
||||||
|
lexers.STYLE_NOTHING = 'back:'..white0
|
||||||
|
lexers.STYLE_CLASS = 'fore:'..black0
|
||||||
|
lexers.STYLE_COMMENT = 'fore:'..white2
|
||||||
|
lexers.STYLE_CONSTANT = 'fore:'..black0
|
||||||
|
lexers.STYLE_DEFINITION = 'fore:'..black0
|
||||||
|
lexers.STYLE_ERROR = 'fore:'..black0
|
||||||
|
lexers.STYLE_FUNCTION = 'fore:'..black0
|
||||||
|
lexers.STYLE_KEYWORD = 'fore:'..black2
|
||||||
|
lexers.STYLE_LABEL = 'fore:'..black0
|
||||||
|
lexers.STYLE_NUMBER = 'fore:'..black1
|
||||||
|
lexers.STYLE_OPERATOR = 'fore:'..black0
|
||||||
|
lexers.STYLE_REGEX = 'fore:'..black1
|
||||||
|
lexers.STYLE_STRING = 'fore:'..black1
|
||||||
|
lexers.STYLE_PREPROCESSOR = 'fore:'..black0
|
||||||
|
lexers.STYLE_TAG = 'fore:'..black0
|
||||||
|
lexers.STYLE_TYPE = 'fore:'..black0
|
||||||
|
lexers.STYLE_VARIABLE = 'fore:'..black0
|
||||||
|
lexers.STYLE_WHITESPACE = ''
|
||||||
|
lexers.STYLE_EMBEDDED = 'back:'..white1
|
||||||
|
lexers.STYLE_IDENTIFIER = 'fore:'..black0
|
||||||
|
|
||||||
|
lexers.STYLE_LINENUMBER = 'fore:'..black1
|
||||||
|
lexers.STYLE_LINENUMBER_CURSOR = lexers.STYLE_LINENUMBER
|
||||||
|
lexers.STYLE_CURSOR = 'back:'..white2
|
||||||
|
lexers.STYLE_CURSOR_PRIMARY = lexers.STYLE_CURSOR..',fore:'..black1
|
||||||
|
lexers.STYLE_CURSOR_LINE = 'underlined'
|
||||||
|
lexers.STYLE_COLOR_COLUMN = 'back:'..white1
|
||||||
|
lexers.STYLE_SELECTION = 'back:'..white1
|
||||||
|
lexers.STYLE_STATUS = 'reverse'
|
||||||
|
lexers.STYLE_STATUS_FOCUSED = 'back:'..white1..',fore:'..black1
|
||||||
|
lexers.STYLE_SEPARATOR = lexers.STYLE_DEFAULT
|
||||||
|
lexers.STYLE_INFO = 'fore:default,back:default'
|
||||||
|
lexers.STYLE_EOF = ''
|
||||||
|
|
||||||
|
|
@ -5,7 +5,7 @@
|
||||||
|
|
||||||
# open images
|
# open images
|
||||||
\.(png|jpg|gif|webp)$ : nsxiv
|
\.(png|jpg|gif|webp)$ : nsxiv
|
||||||
\.(html|svg) : librewolf
|
\.svg$ : librewolf
|
||||||
|
|
||||||
# open videos
|
# open videos
|
||||||
\.(avi|mp4|mkv|mp3|ogg|flac|mov|webm)$ : mpv
|
\.(avi|mp4|mkv|mp3|ogg|flac|mov|webm)$ : mpv
|
||||||
|
|
@ -17,7 +17,8 @@
|
||||||
^https?:// : librewolf
|
^https?:// : librewolf
|
||||||
|
|
||||||
# open documents
|
# open documents
|
||||||
\.pdf : librewolf
|
\.pdf$ : librewolf
|
||||||
|
\.html$ : netsurf
|
||||||
|
|
||||||
# open files with no extension
|
# open files with no extension
|
||||||
(^|/)\.?[^./]+$ : vis
|
(^|/)\.?[^./]+$ : vis
|
||||||
|
|
|
||||||
|
|
@ -24,6 +24,7 @@ alias xr='doas xbps-remove -y'
|
||||||
alias pc='pass -c'
|
alias pc='pass -c'
|
||||||
alias pe='pass edit'
|
alias pe='pass edit'
|
||||||
cdpath="$HOME"
|
cdpath="$HOME"
|
||||||
|
alias nman='man -M /usr/local/netbsd-man'
|
||||||
|
|
||||||
mktags() { ctags `lr -t 'name=~".c$"'` }
|
mktags() { ctags `lr -t 'name=~".c$"'` }
|
||||||
|
|
||||||
|
|
|
||||||
9
pkgs.txt
9
pkgs.txt
|
|
@ -20,14 +20,15 @@ lxappearance
|
||||||
lxterminal
|
lxterminal
|
||||||
man-pages-devel
|
man-pages-devel
|
||||||
man-pages-posix
|
man-pages-posix
|
||||||
|
nsxiv
|
||||||
opendoas
|
opendoas
|
||||||
pcmanfm
|
|
||||||
pass
|
pass
|
||||||
playerctl
|
pcmanfm
|
||||||
pipewire
|
pipewire
|
||||||
|
playerctl
|
||||||
ripgrep
|
ripgrep
|
||||||
sct
|
|
||||||
scrot
|
scrot
|
||||||
|
sct
|
||||||
seatd
|
seatd
|
||||||
socklog-void
|
socklog-void
|
||||||
surf
|
surf
|
||||||
|
|
@ -37,8 +38,8 @@ turnstile
|
||||||
vis
|
vis
|
||||||
void-docs-browse
|
void-docs-browse
|
||||||
xarchiver
|
xarchiver
|
||||||
xorg
|
|
||||||
xclip
|
xclip
|
||||||
xf86-video-intel
|
xf86-video-intel
|
||||||
|
xorg
|
||||||
xtools
|
xtools
|
||||||
zsh
|
zsh
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue