wip: further cleanup
This commit is contained in:
57
files/.config/alacritty/alacritty.yml
Normal file
57
files/.config/alacritty/alacritty.yml
Normal file
@@ -0,0 +1,57 @@
|
||||
# env:
|
||||
# TERM: xterm-256color
|
||||
|
||||
window:
|
||||
dynamic_title: true
|
||||
dynamic_padding: true
|
||||
decorations: None
|
||||
startup_mode: Windowed
|
||||
|
||||
padding:
|
||||
x: 7
|
||||
y: 7
|
||||
|
||||
scrolling:
|
||||
history: 10000
|
||||
multiplier: 3
|
||||
|
||||
font:
|
||||
size: 9.0
|
||||
normal:
|
||||
family: FiraCode Nerd Font Mono
|
||||
style: Regular
|
||||
|
||||
bold:
|
||||
family: FiraCode Nerd Font Mono
|
||||
style: Bold
|
||||
|
||||
italic:
|
||||
family: FiraSansCondensed NF
|
||||
style: Italic
|
||||
|
||||
bold_italic:
|
||||
family: FiraSansCondensed NF
|
||||
style: Bold Italic
|
||||
|
||||
draw_bold_text_with_bright_colors: false
|
||||
background_opacity: 0.95
|
||||
|
||||
cursor:
|
||||
style: Beam
|
||||
unfocused_hollow: true
|
||||
|
||||
live_config_reload: true
|
||||
|
||||
shell:
|
||||
program: /usr/bin/fish
|
||||
args:
|
||||
- --interactive
|
||||
- --login
|
||||
|
||||
key_bindings:
|
||||
- { key: V, mods: Control|Shift, action: Paste }
|
||||
- { key: C, mods: Control|Shift, action: Copy }
|
||||
- { key: Insert, mods: Shift, action: PasteSelection }
|
||||
- { key: Key0, mods: Control, action: ResetFontSize }
|
||||
- { key: Plus, mods: Control, action: IncreaseFontSize }
|
||||
- { key: Minus, mods: Control, action: DecreaseFontSize }
|
||||
@@ -1,5 +1,6 @@
|
||||
# Only execute in interactive shell
|
||||
if status --is-interactive
|
||||
if status is-interactive
|
||||
|
||||
# Fish specific
|
||||
set fish_greeting
|
||||
set --global hydro_symbol_prompt "\$"
|
||||
@@ -12,4 +13,5 @@ if status --is-interactive
|
||||
if begin; test -e $HOME/.profile; and type -q replay; end
|
||||
replay "source $HOME/.profile"
|
||||
end
|
||||
|
||||
end
|
||||
|
||||
6
files/.config/fish/functions/.gitignore
vendored
Normal file
6
files/.config/fish/functions/.gitignore
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
# Ignore all
|
||||
**/*
|
||||
!.gitignore
|
||||
|
||||
# Keep custom functions
|
||||
!nvm.fish
|
||||
Reference in New Issue
Block a user