feat: move to alacritty as default terminal

This commit is contained in:
2026-08-03 15:16:45 +02:00
parent ae331c5f63
commit e90fe68d24
5 changed files with 52 additions and 20 deletions
+1
View File
@@ -16,6 +16,7 @@ For my neovim config, see [here](https://git.janishutz.com/janishutz/nvim)
- Fish config (with some handy aliases, based on one from ohh-my-fish)
- Fastfetch config
- kitty config with cursor trail
- alacritty config
- notification manager uses `swaync`
- Linter configs (eslint, clang-format, latexindent and more)
- mpv config
+10
View File
@@ -0,0 +1,10 @@
[general]
import = [
"~/.config/alacritty/dank-theme.toml"
]
[font]
normal = {
family = "Source Code Pro", style = "Regular"
}
size = 12.0
+31
View File
@@ -0,0 +1,31 @@
[colors.primary]
background = '#0e1513'
foreground = '#dde4e1'
[colors.selection]
text = '#dde4e1'
background = '#005049'
[colors.cursor]
text = '#0e1513'
cursor = '#82d5c9'
[colors.normal]
black = '#0e1513'
red = '#f49c6e'
green = '#6ad571'
yellow = '#fff372'
blue = '#6bcabc'
magenta = '#1c6258'
cyan = '#82d5c9'
white = '#d2dfdd'
[colors.bright]
black = '#808a88'
red = '#ffc09f'
green = '#a5ffab'
yellow = '#fff7a5'
blue = '#9ceadf'
magenta = '#b9fff4'
cyan = '#d2fff8'
white = '#f8fffe'
+4 -4
View File
@@ -9,7 +9,7 @@ local function launcher(program)
end
end
hl.bind("SUPER + Return", launcher("kitty"))
hl.bind("SUPER + Return", launcher("alacritty"))
hl.define_submap("launch", function()
-- Librewolf
@@ -21,9 +21,9 @@ hl.define_submap("launch", function()
-- Discord
hl.bind("d", launcher("vesktop"), { description = "Launch Discord" })
-- Kitty
hl.bind("k", launcher("kitty"), { description = "Launch kitty" })
hl.bind("Return", launcher("kitty"), { description = "Launch kitty" })
-- alacritty
hl.bind("k", launcher("alacritty"), { description = "Launch alacritty" })
hl.bind("Return", launcher("alacritty"), { description = "Launch alacritty" })
-- Filezilla
hl.bind("f", launcher("filezilla"), { description = "Launch Filezilla" })
+6 -16
View File
@@ -32,7 +32,7 @@
"firstDayOfWeek": -1,
"showWeekNumber": false,
"calendarBackend": "auto",
"clockFormat": "auto",
"clockFormat": "24h",
"showSeconds": true,
"padHours12Hour": false,
"useFahrenheit": false,
@@ -389,19 +389,6 @@
"fadeToDpmsEnabled": true,
"fadeToDpmsGracePeriod": 5,
"launchPrefix": "",
"brightnessDevicePins": {},
"wifiNetworkPins": {
"preferredWifi": [
"mchp"
]
},
"bluetoothDevicePins": {
"preferredDevice": [
"ED:A8:60:08:93:6C"
]
},
"audioInputDevicePins": {},
"audioOutputDevicePins": {},
"gtkThemingEnabled": false,
"qtThemingEnabled": false,
"syncModeWithPortal": true,
@@ -426,7 +413,7 @@
"matugenTemplateGhostty": false,
"matugenTemplateKitty": true,
"matugenTemplateFoot": false,
"matugenTemplateAlacritty": false,
"matugenTemplateAlacritty": true,
"matugenTemplateNeovim": true,
"matugenTemplateWezterm": false,
"matugenTemplateDgop": true,
@@ -766,6 +753,9 @@
},
"dms_notepad": {
"enabled": false
},
"dms_clipboard_search": {
"trigger": "cb"
}
},
"clipboardClickToPaste": false,
@@ -798,5 +788,5 @@
"barInsetPaddingShared": -1,
"barInsetPaddingSyncAll": false,
"frameBarInsetPadding": -1,
"configVersion": 12
"configVersion": 13
}