Compare commits

..

No commits in common. "d9fe66af1a0ad19e28ce77b908fe22573df2cae6" and "36190351e38cc0d928b78c91f9bed2e09f92901c" have entirely different histories.

2 changed files with 12 additions and 48 deletions

View File

@ -70,40 +70,19 @@
;; theme
(use-package base16-theme
:ensure t
:config
(defvar agw-base16-fira-colors
'(:base00 "#0f0c11" ; default bg
:base01 "#1b161f" ; lighter bg
:base02 "#382c3f" ; selection bg
:base03 "#505170" ; comments
:base04 "#8d6f9f" ; dark fg
:base05 "#ffffff" ; default fg, caret, delims, ops
:base06 "#c59cdf" ; light fg
:base07 "#e1b2ff" ; light bg
:base08 "#e873af" ; vars, tags, lists, deletion
:base09 "#f367f8" ; ints, bools, constants, attribs
:base0A "#53bdb1" ; classes, bold, search bg
:base0B "#5dffae" ; strings, inherited, code, insertion
:base0C "#ff344f" ; support, regexps, escapes, quotes
:base0D "#ba8cc6" ; funcs, methods, attrib ids, headings
:base0E "#e8a8c9" ; keywords, storage, change
:base0F "#b03060")) ; deprecated, open/close tags
(deftheme agw-base16-fira)
(base16-theme-define 'agw-base16-fira agw-base16-fira-colors)
(provide-theme 'agw-base16-fira)
(provide 'agw-base16-fira-theme)
(enable-theme 'agw-base16-fira))
:ensure t)
(use-package inkpot-theme
:after base16-theme
:ensure t
:config
(unless (display-graphic-p)
(load-theme 'inkpot t nil))
(set-face-attribute 'mode-line nil
:background "#0a0a0a"
:foreground "#92ebf0"))
:ensure t)
(load-theme
(if (display-graphic-p)
'base16-atelier-cave
'inkpot)
t nil)
(set-face-attribute 'mode-line nil
:background "#0a0a0a"
:foreground "#92ebf0")
;; major modes
(use-package powershell

View File

@ -1,22 +1,7 @@
#!/usr/bin/env fish
function megadl-all -d 'Downloads all files in ~/dl'
for f in (cat ~/dl)
set folder_name ""
if string match "*/folder/*" -- $f > /dev/null
set folder_name (string sub -s24 -- $f | tr -c "[a-zA-Z0-9]" "_")
else if string match "*#F!*" -- $f > /dev/null
set folder_name (string sub -s20 -- $f | tr -c "[a-zA-Z0-9]" "_")
end
if test $folder_name
mkdir $folder_name
pushd $folder_name
end
megadl $f
if test $folder_name
popd
end
end
megadl (cat ~/dl)
end
## EOF