Add plugins for tmux. Update README. Add fonts for alacritty

This commit is contained in:
Leo Alho 2024-02-28 23:29:47 +02:00
parent d1ff17c259
commit 74cfb73100
3 changed files with 34 additions and 1 deletions

View file

@ -10,3 +10,9 @@ This directory is inspired by this https://www.atlassian.com/git/tutorials/dotfi
To use the git aliases in your gitconfig. Add the following lines to your .gitconfig:
[include]
path = ~/.git_aliases, or any other path depending on your $HOME
## Tmux uses the tpm for plugins
https://github.com/tmux-plugins/tpm
## Nvim uses vim-plug
https://github.com/junegunn/vim-plug

View file

@ -1,8 +1,29 @@
# [shell]
# program = "/bin/bash"
# args = ["-l","-c","tmux attach || tmux"]
[window]
opacity = 0.75
padding = { x = 5, y = 5}
[colors.primary]
background = "#000000"
[font]
size = 11
[font.bold]
family = "SpaceMono Nerd Font Mono"
style = "Bold"
[font.bold_italic]
family = "SpaceMono Nerd Font Mono"
style = "Bold Italic"
[font.italic]
family = "SpaceMono Nerd Font Mono"
style = "Italic"
[font.normal]
family = "SpaceMono Nerd Font Mono"
style = "Regular"

View file

@ -1,4 +1,4 @@
#Add a mapping for reloading the conf file"
#Add a mapping for reloading the conf file
bind r source-file ~/.tmux.conf \; display-message "RELOADING CONFIGURATION FILE…"
# remap prefix from 'C-b' to 'C-a'
@ -10,3 +10,9 @@ bind-key C-a send-prefix
set -g mouse on
set -g status-style bg=white,fg=black
# List of plugins
set -g @plugin 'tmux-plugins/tpm'
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
run '~/.tmux/plugins/tpm/tpm'