Updated
This commit is contained in:
parent
d57b631831
commit
184ab918bc
5 changed files with 2092 additions and 0 deletions
|
@ -205,6 +205,7 @@ List of keybindings (SPC h b b)")
|
||||||
("https://www.techrepublic.com/rssfeeds/topic/open-source/" techrepublic linux)
|
("https://www.techrepublic.com/rssfeeds/topic/open-source/" techrepublic linux)
|
||||||
("https://betanews.com/feed" betanews linux)
|
("https://betanews.com/feed" betanews linux)
|
||||||
("http://lxer.com/module/newswire/headlines.rss" lxer linux)
|
("http://lxer.com/module/newswire/headlines.rss" lxer linux)
|
||||||
|
("https://archlinux.org/feeds/news/" arch linux)
|
||||||
("https://distrowatch.com/news/dwd.xml" distrowatch linux))))
|
("https://distrowatch.com/news/dwd.xml" distrowatch linux))))
|
||||||
|
|
||||||
(emms-all)
|
(emms-all)
|
||||||
|
|
|
@ -424,6 +424,7 @@ An RSS newsfeed reader for Emacs.
|
||||||
("https://www.techrepublic.com/rssfeeds/topic/open-source/" techrepublic linux)
|
("https://www.techrepublic.com/rssfeeds/topic/open-source/" techrepublic linux)
|
||||||
("https://betanews.com/feed" betanews linux)
|
("https://betanews.com/feed" betanews linux)
|
||||||
("http://lxer.com/module/newswire/headlines.rss" lxer linux)
|
("http://lxer.com/module/newswire/headlines.rss" lxer linux)
|
||||||
|
("https://archlinux.org/feeds/news/" arch linux)
|
||||||
("https://distrowatch.com/news/dwd.xml" distrowatch linux))))
|
("https://distrowatch.com/news/dwd.xml" distrowatch linux))))
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
|
|
|
@ -8,6 +8,7 @@ dir3="$HOME/.config/picom/"
|
||||||
dir4="$HOME/.config/vifm/"
|
dir4="$HOME/.config/vifm/"
|
||||||
dir6="$HOME/.config/doom/"
|
dir6="$HOME/.config/doom/"
|
||||||
dir7="$HOME/.config/scripts/"
|
dir7="$HOME/.config/scripts/"
|
||||||
|
dir8="$HOME/.config/zsh/"
|
||||||
|
|
||||||
# File List
|
# File List
|
||||||
newsboaturl="$HOME/.newsboat/urls"
|
newsboaturl="$HOME/.newsboat/urls"
|
||||||
|
@ -16,6 +17,8 @@ bashrc="$HOME/.bashrc"
|
||||||
starshiprc="$HOME/.config/starship.toml"
|
starshiprc="$HOME/.config/starship.toml"
|
||||||
mocrc="$HOME/.moc/config"
|
mocrc="$HOME/.moc/config"
|
||||||
mocth="$HOME/.moc/themes/"
|
mocth="$HOME/.moc/themes/"
|
||||||
|
qutepy="$HOME/.config/qutebrowser/config.py"
|
||||||
|
qutegruvpy="$HOME/.config/qutebrowser/gruvbox.py"
|
||||||
|
|
||||||
# Deploy directory
|
# Deploy directory
|
||||||
echo "Checking the deploy directory, creating if it's not created"
|
echo "Checking the deploy directory, creating if it's not created"
|
||||||
|
@ -26,6 +29,7 @@ mkdir -p "$HOME/.deploy/"
|
||||||
mkdir -p "$HOME/.deploy/.config/"
|
mkdir -p "$HOME/.deploy/.config/"
|
||||||
mkdir -p "$HOME/.deploy/.moc/"
|
mkdir -p "$HOME/.deploy/.moc/"
|
||||||
mkdir -p "$HOME/.deploy/.newsboat/"
|
mkdir -p "$HOME/.deploy/.newsboat/"
|
||||||
|
mkdir -p "$HOME/.deploy/.config/qutebrowser/"
|
||||||
|
|
||||||
# Deploying
|
# Deploying
|
||||||
echo "Deploying the awesomewm config";
|
echo "Deploying the awesomewm config";
|
||||||
|
@ -38,6 +42,7 @@ echo "Deploying the vifm config";
|
||||||
cp -r "$dir4" "$deploydir/.config/";
|
cp -r "$dir4" "$deploydir/.config/";
|
||||||
echo "Deploying the zsh config";
|
echo "Deploying the zsh config";
|
||||||
cp "$zshrc" "$deploydir/";
|
cp "$zshrc" "$deploydir/";
|
||||||
|
cp -r "$dir8" "$deploydir/.config/";
|
||||||
echo "Deploying the starship config";
|
echo "Deploying the starship config";
|
||||||
cp "$starshiprc" "$deploydir/.config/";
|
cp "$starshiprc" "$deploydir/.config/";
|
||||||
echo "Deploying the bash config";
|
echo "Deploying the bash config";
|
||||||
|
@ -48,6 +53,9 @@ echo "Deploying the moc themes";
|
||||||
cp -r "$mocth" "$deploydir/.moc/";
|
cp -r "$mocth" "$deploydir/.moc/";
|
||||||
echo "Deploying the DOOM Emacs config";
|
echo "Deploying the DOOM Emacs config";
|
||||||
cp -r "$dir6" "$deploydir/.config/";
|
cp -r "$dir6" "$deploydir/.config/";
|
||||||
|
echo "Deploying the qutebrowser config";
|
||||||
|
cp "$qutepy" "$deploydir/.config/qutebrowser/";
|
||||||
|
cp "$qutegruvpy" "$deploydir/.config/qutebrowser/";
|
||||||
echo "Deploying scripts";
|
echo "Deploying scripts";
|
||||||
cp -r "$dir7" "$deploydir/.config/";
|
cp -r "$dir7" "$deploydir/.config/";
|
||||||
echo "Deploying the newsboat config";
|
echo "Deploying the newsboat config";
|
||||||
|
|
2057
.config/zsh/antigen.zsh
Normal file
2057
.config/zsh/antigen.zsh
Normal file
File diff suppressed because it is too large
Load diff
25
.zshrc
25
.zshrc
|
@ -88,6 +88,31 @@ fi
|
||||||
|
|
||||||
IFS=$SAVEIFS
|
IFS=$SAVEIFS
|
||||||
|
|
||||||
|
### Plugins ###
|
||||||
|
source $HOME/.config/zsh/antigen.zsh
|
||||||
|
|
||||||
|
# Load the oh-my-zsh's library.
|
||||||
|
antigen use oh-my-zsh
|
||||||
|
|
||||||
|
# Bundles from the default repo (robbyrussell's oh-my-zsh).
|
||||||
|
antigen bundle git
|
||||||
|
antigen bundle heroku
|
||||||
|
antigen bundle pip
|
||||||
|
antigen bundle lein
|
||||||
|
antigen bundle command-not-found
|
||||||
|
|
||||||
|
# Syntax highlighting bundle.
|
||||||
|
antigen bundle zsh-users/zsh-syntax-highlighting
|
||||||
|
|
||||||
|
# zsh-completions
|
||||||
|
antigen bundle zsh-users/zsh-completions
|
||||||
|
|
||||||
|
# Load the theme.
|
||||||
|
antigen theme gruvbox-dark
|
||||||
|
|
||||||
|
# Tell Antigen that you're done.
|
||||||
|
antigen apply
|
||||||
|
|
||||||
### ALIASES ###
|
### ALIASES ###
|
||||||
|
|
||||||
# navigation
|
# navigation
|
||||||
|
|
Loading…
Reference in a new issue