Skip to content

Commit

Permalink
feat: Add Alacritty and configuration
Browse files Browse the repository at this point in the history
- Add `alacritty` to `manjaro-packages`
- Add `alacritty-theme` repo as submodule for themes
- Add Alacritty config directory link to `install.conf.yaml`
  • Loading branch information
vicnett committed Nov 18, 2024
1 parent 09b281f commit 4e327ff
Show file tree
Hide file tree
Showing 6 changed files with 29 additions and 6 deletions.
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,6 @@
path = dotbot
url = https://github.com/anishathalye/dotbot
ignore = dirty
[submodule "alacritty/themes"]
path = alacritty/themes
url = https://github.com/alacritty/alacritty-theme.git
17 changes: 17 additions & 0 deletions alacritty/alacritty.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
import = [
"~/.config/alacritty/themes/themes/solarized_dark.toml"
]

[shell]
program = "/bin/zsh"
args = ["-l"]

[env]
TERM = "xterm-256color"

[window]
startup_mode = "Maximized"

[font]
normal = { family = "DejaVuSansM Nerd Font Mono", style = "Regular" }

1 change: 1 addition & 0 deletions alacritty/themes
Submodule themes added at 324642
11 changes: 6 additions & 5 deletions install.conf.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,14 @@
- ~/.config/zsh

- link:
~/.zshenv: zsh/zshenv
~/.config/zsh/.zshrc: zsh/zshrc
~/.config/zsh/.zprofile: zsh/zprofile
~/.byobu: byobu
~/.config/alacritty: alacritty
~/.config/nvim: vim
~/.config/zsh/.p10k.zsh: zsh/p10k.zsh
~/.config/zsh/.zprofile: zsh/zprofile
~/.config/zsh/.zshrc: zsh/zshrc
~/.config/zsh/dircolors.zsh: zsh/dircolors.zsh
~/.config/nvim: vim
~/.byobu: byobu
~/.zshenv: zsh/zshenv

- shell:
- [git submodule update --init --recursive, Installing submodules]
1 change: 1 addition & 0 deletions manjaro_packages
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
alacritty
base-devel
byobu
ctags
Expand Down
2 changes: 1 addition & 1 deletion setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ pipx install --include-deps ansible

if [ ! -d $DOTFILES_DIR ]
then
git clone https://github.com/vicnett/dotfiles.git $DOTFILES_DIR
git clone --recurse-submodules https://github.com/vicnett/dotfiles.git $DOTFILES_DIR
fi

if [ -f $PLAYBOOK_PATH ]
Expand Down

0 comments on commit 4e327ff

Please sign in to comment.