mirror of
https://github.com/Username404-59/Dotfiles-NixOS.git
synced 2026-07-03 12:58:07 +02:00
Use fish in kitty
This commit is contained in:
parent
621e1673e7
commit
6707382246
@ -28,7 +28,6 @@ in
|
|||||||
];
|
];
|
||||||
|
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
kitty
|
|
||||||
kdePackages.kate
|
kdePackages.kate
|
||||||
(discord-canary.override {
|
(discord-canary.override {
|
||||||
withOpenASAR = true;
|
withOpenASAR = true;
|
||||||
|
|||||||
@ -1,29 +1,45 @@
|
|||||||
|
{ ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
home.file.".config/kitty/kitty.conf".text = ''
|
programs.kitty = {
|
||||||
font_family Fira Code Regular
|
enable = true;
|
||||||
bold_font auto
|
shellIntegration = {
|
||||||
italic_font auto
|
mode = "enabled";
|
||||||
bold_italic_font auto
|
enableFishIntegration = true;
|
||||||
|
};
|
||||||
|
settings = {
|
||||||
|
shell = "fish";
|
||||||
|
font_family = "Fira Code Regular";
|
||||||
|
bold_font = "auto";
|
||||||
|
italic_font = "auto";
|
||||||
|
bold_italic_font = "auto";
|
||||||
|
|
||||||
cursor_shape beam
|
cursor_shape = "beam";
|
||||||
disable_ligatures cursor
|
disable_ligatures = "cursor";
|
||||||
|
|
||||||
font_size 12
|
font_size = 12;
|
||||||
|
|
||||||
scrollback_lines 4096
|
scrollback_lines = 4096;
|
||||||
enable_audio_bell no
|
enable_audio_bell = "no";
|
||||||
copy_on_select clipboard
|
copy_on_select = "clipboard";
|
||||||
strip_trailing_spaces smart
|
strip_trailing_spaces = "smart";
|
||||||
|
|
||||||
sync_to_monitor no
|
sync_to_monitor = "no";
|
||||||
background_opacity 0.75
|
background_opacity = 0.75;
|
||||||
initial_window_width 576
|
initial_window_width = 576;
|
||||||
initial_window_height 512
|
initial_window_height = 512;
|
||||||
|
|
||||||
remember_window_size no
|
remember_window_size = "no";
|
||||||
window_padding_width 6
|
window_padding_width = 6;
|
||||||
placement_strategy center
|
placement_strategy = "center";
|
||||||
hide_window_decorations yes
|
hide_window_decorations = "yes";
|
||||||
shell_integration enabled
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
programs.fish = {
|
||||||
|
enable = true;
|
||||||
|
interactiveShellInit = ''
|
||||||
|
set fish_greeting # Disables greeting
|
||||||
'';
|
'';
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user