this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

removing more things! alacritty

+1 -27
-13
alacritty/alacritty.toml
··· 1 - import = ["~/.config/alacritty/themes/themes/solarized_light.toml"] 2 - 3 - [window] 4 - decorations = "Buttonless" 5 - dynamic_padding = true 6 - padding = { x = 10, y = 8 } 7 - 8 - [font] 9 - size = 14 10 - normal = { family = "Input Mono Condensed", style = "Regular" } 11 - 12 - [bell] 13 - duration = 0
+1 -1
misc/tmux.conf
··· 3 3 set-option -g prefix C-a 4 4 5 5 set -g default-terminal "xterm-256color" 6 - set -as terminal-overrides ",xterm-256color:Tc,alacritty:RGB" 6 + set -as terminal-overrides ",xterm-256color:Tc" 7 7 8 8 set -g base-index 1 9 9 setw -g pane-base-index 1
-13
playbooks/roles/misc/tasks/main.yml
··· 26 26 state: link 27 27 force: true 28 28 29 - - name: link-alacritty-config 30 - ansible.builtin.file: 31 - src: "{{ dotfiles_dir }}/alacritty/alacritty.toml" 32 - dest: "{{ home_dir }}/.config/alacritty/alacritty.toml" 33 - state: link 34 - force: true 35 - 36 - - name: clone-alacritty-themes 37 - ansible.builtin.git: 38 - repo: https://github.com/alacritty/alacritty-theme 39 - dest: "{{ home_dir }}/.config/alacritty/themes" 40 - update: true 41 - 42 29 - name: install-scripts 43 30 ansible.builtin.file: 44 31 src: "{{ item }}"