Update fish configurations and add others (Neovim, Ranger, Alacritty)

This commit is contained in:
Fabio Scotto di Santolo
2024-06-05 09:22:06 +02:00
parent 87a9a52283
commit 716fbe0f2e
35 changed files with 381 additions and 5 deletions

163
alacritty/alacritty.toml Normal file
View File

@@ -0,0 +1,163 @@
live_config_reload = true
working_directory = "None"
[env]
TERM = "xterm-256color"
WINIT_X11_SCALE_FACTOR = "1"
[window]
dynamic_padding = true
decorations = "full"
title = "Alacritty@CachyOS"
opacity = 0.95
decorations_theme_variant = "Dark"
[window.dimensions]
columns = 100
lines = 30
[window.class]
instance = "Alacritty"
general = "Alacritty"
[scrolling]
history = 10000
multiplier = 3
[colors]
draw_bold_text_with_bright_colors = true
[colors.primary]
background = "0x272822"
foreground = "0xF8F8F2"
[colors.normal]
black = "0x272822"
red = "0xF92672"
green = "0xA6E22E"
yellow = "0xF4BF75"
blue = "0x66D9EF"
magenta = "0xAE81FF"
cyan = "0xA1EFE4"
white = "0xF8F8F2"
[colors.bright]
black = "0x75715E"
red = "0xF92672"
green = "0xA6E22E"
yellow = "0xF4BF75"
blue = "0x66D9EF"
magenta = "0xAE81FF"
cyan = "0xA1EFE4"
white = "0xF9F8F5"
[font]
size = 12
[font.normal]
family = "RobotoMono Nerd Font "
style = "Regular"
[font.bold]
family = "RobotoMono Nerd Font"
style = "Bold"
[font.italic]
family = "RobotoMono Nerd Font"
style = "Italic"
[font.bold_italic]
family = "RobotoMono Nerd Font"
style = "Bold Italic"
[selection]
semantic_escape_chars = ",│`|:\"' ()[]{}<>\t"
save_to_clipboard = true
[cursor]
style = "Block"
vi_mode_style = "None"
unfocused_hollow = true
thickness = 0.15
[mouse]
hide_when_typing = true
[[mouse.bindings]]
mouse = "Middle"
action = "PasteSelection"
[keyboard]
[[keyboard.bindings]]
key = "Paste"
action = "Paste"
[[keyboard.bindings]]
key = "Copy"
action = "Copy"
[[keyboard.bindings]]
key = "L"
mods = "Control"
action = "ClearLogNotice"
[[keyboard.bindings]]
key = "L"
mods = "Control"
mode = "~Vi"
chars = "\f"
[[keyboard.bindings]]
key = "PageUp"
mods = "Shift"
mode = "~Alt"
action = "ScrollPageUp"
[[keyboard.bindings]]
key = "PageDown"
mods = "Shift"
mode = "~Alt"
action = "ScrollPageDown"
[[keyboard.bindings]]
key = "Home"
mods = "Shift"
mode = "~Alt"
action = "ScrollToTop"
[[keyboard.bindings]]
key = "End"
mods = "Shift"
mode = "~Alt"
action = "ScrollToBottom"
[[keyboard.bindings]]
key = "V"
mods = "Control|Shift"
action = "Paste"
[[keyboard.bindings]]
key = "C"
mods = "Control|Shift"
action = "Copy"
[[keyboard.bindings]]
key = "F"
mods = "Control|Shift"
action = "SearchForward"
[[keyboard.bindings]]
key = "B"
mods = "Control|Shift"
action = "SearchBackward"
[[keyboard.bindings]]
key = "C"
mods = "Control|Shift"
mode = "Vi"
action = "ClearSelection"
[[keyboard.bindings]]
key = "Key0"
mods = "Control"
action = "ResetFontSize"