Compare commits

..

3 Commits

Author SHA1 Message Date
fbachus 8be9fe6370 add bat config, unify niri column width to 4 digit precision 2026-05-18 14:02:31 +02:00
fbachus 5fc2791c94 remove fish_variables and add that to gitignore 2026-05-11 19:51:23 +02:00
fbachus 42cf9e0713 add thunderbird to niri windowrules 2026-05-11 19:50:25 +02:00
5 changed files with 37 additions and 31 deletions
+27
View File
@@ -0,0 +1,27 @@
# This is `bat`s configuration file. Each line either contains a comment or
# a command-line option that you want to pass to `bat` by default. You can
# run `bat --help` to get a list of all possible configuration options.
# Specify desired highlighting theme (e.g. "TwoDark"). Run `bat --list-themes`
# for a list of all available themes
#--theme="TwoDark"
#--theme="OneHalfDark"
--theme="Catppuccin Mocha"
# Enable this to use italic text on the terminal. This is not supported on all
# terminal emulators (like tmux, by default):
#--italic-text=always
# Uncomment the following line to disable automatic paging:
#--paging=never
# Uncomment the following line if you are using less version >= 551 and want to
# enable mouse scrolling support in `bat` when running inside tmux. This might
# disable text selection, unless you press shift.
#--pager="less --RAW-CONTROL-CHARS --quit-if-one-screen --mouse"
# Syntax mappings: map a certain filename pattern to a language.
# Example 1: use the C++ syntax for Arduino .ino files
# Example 2: Use ".gitignore"-style highlighting for ".ignore" files
#--map-syntax "*.ino:C++"
#--map-syntax ".ignore:Git Ignore"
-28
View File
@@ -1,28 +0,0 @@
# This file contains fish universal variable definitions.
# VERSION: 3.0
SETUVAR --export BAT_THEME:OneHalfDark
SETUVAR DISPLAY:\x3a0
SETUVAR --export EDITOR:nvim
SETUVAR --export ELECTRON_OZONE_PLATFORM_HINT:wayland
SETUVAR FLASK_ENV:development
SETUVAR --export --path GODOT_ADDON_PATH:\x7e/\x2elocal/share/godot/addons
SETUVAR GTK_THEME:adwaita
SETUVAR LANG:en_GB\x2eUTF\x2d8
SETUVAR LANGUAGE:en_GB\x2eUTF\x2d8
SETUVAR --export LAST_DIR:/home/felix/Code/side/advent_of_code_2024
SETUVAR --export MY_GITLAB_TOKEN:glpat\x2dJRJxEXxRxznVHLzHuuPc
SETUVAR --export RUSTC_WRAPPER:\x1d
SETUVAR --export SUDO_ASKPASS:/usr/bin/ksshaskpass
SETUVAR TERMINAL_FONT_SIZE:14
SETUVAR --export VISUAL_EDITOR:nvim
SETUVAR __fish_initialized:4300
SETUVAR _fish_abbr_audio_2D_switch:\x7e/Code/scripts/alsa\x2dfp\x2dswitch\x2esh
SETUVAR _fish_abbr_clera:clear
SETUVAR _fish_abbr_current_2D_project:vim\x20Code/side/first_rust_gui
SETUVAR _fish_abbr_secscreen:\x2e/Code/scripts/act_second_monitor\x2esh
SETUVAR _fish_abbr_uin:sudo\x20pacman\x20\x2dRuscn
SETUVAR _fisher_nickeb96_2F_puffer_2D_fish_files:\x7e/\x2econfig/fish/functions/_puffer_fish_expand_bang\x2efish\x1e\x7e/\x2econfig/fish/functions/_puffer_fish_expand_dots\x2efish\x1e\x7e/\x2econfig/fish/functions/_puffer_fish_expand_lastarg\x2efish\x1e\x7e/\x2econfig/fish/conf\x2ed/puffer_fish_key_bindings\x2efish
SETUVAR _fisher_plugins:nickeb96/puffer\x2dfish
SETUVAR _fisher_upgraded_to_4_4:\x1d
SETUVAR fish_greeting:Welcome\x20to\x20fish\x2c\x20the\x20friendly\x20interactive\x20shell\x0aType\x20\x60help\x60\x20for\x20instructions\x20on\x20how\x20to\x20use\x20fish
SETUVAR fish_user_paths:/home/felix/\x2ecargo/bin
+2 -2
View File
@@ -121,9 +121,9 @@ layout {
// For example, you can perfectly fit four windows sized "proportion 0.25" on an output.
// The default preset widths are 1/3, 1/2 and 2/3 of the output.
// proportion 0.25
proportion 0.33333
proportion 0.3333
proportion 0.5
proportion 0.66667
proportion 0.6667
// Fixed sets the width in logical pixels exactly.
// fixed 1920
+7 -1
View File
@@ -56,7 +56,13 @@ window-rule {
// terminal doesn't need to be big
window-rule {
match app-id="^Alacritty$"
default-column-width { proportion 0.333; }
default-column-width { proportion 0.3333; }
}
window-rule {
match app-id="^Thunderbird$"
default-column-width { proportion 0.9; }
open-on-workspace "2"
}
window-rule {
+1
View File
@@ -11,3 +11,4 @@ history.txt
.env*
*typrstats
*-lock*
fish_variables