mirror of
https://github.com/Theaninova/TheaninovOS.git
synced 2025-12-12 11:36:20 +00:00
kitty terminal
This commit is contained in:
@@ -94,7 +94,8 @@
|
|||||||
configDir = ./ags;
|
configDir = ./ags;
|
||||||
};
|
};
|
||||||
programs.fuzzel = import ./fuzzel.nix;
|
programs.fuzzel = import ./fuzzel.nix;
|
||||||
programs.alacritty = import ./alacritty.nix;
|
# programs.alacritty = import ./alacritty.nix;
|
||||||
|
programs.kitty = import ./kitty.nix { inherit pkgs; };
|
||||||
programs.wofi = import ./wofi.nix;
|
programs.wofi = import ./wofi.nix;
|
||||||
programs.swaylock = import ./swaylock.nix;
|
programs.swaylock = import ./swaylock.nix;
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[
|
[
|
||||||
"SUPER,Q,killactive"
|
"SUPER,Q,killactive"
|
||||||
"SUPER,T,exec,alacritty"
|
"SUPER,T,exec,kitty"
|
||||||
"SUPER_SHIFT,C,exec,hyprpicker"
|
"SUPER_SHIFT,C,exec,hyprpicker"
|
||||||
"SUPER_SHIFT,S,exec,slurp | grim -g - - | wl-copy"
|
"SUPER_SHIFT,S,exec,slurp | grim -g - - | wl-copy"
|
||||||
"SUPER,P,pseudo,"
|
"SUPER,P,pseudo,"
|
||||||
|
|||||||
47
desktops/hyprland/kitty.nix
Normal file
47
desktops/hyprland/kitty.nix
Normal file
@@ -0,0 +1,47 @@
|
|||||||
|
{ pkgs }:
|
||||||
|
{
|
||||||
|
enable = true;
|
||||||
|
shellIntegration.enableFishIntegration = true;
|
||||||
|
font = {
|
||||||
|
package = pkgs.fira-code-nerdfont;
|
||||||
|
name = "FiraCode Nerdfont";
|
||||||
|
size = 12;
|
||||||
|
};
|
||||||
|
settings = {
|
||||||
|
background_opacity = "0.8";
|
||||||
|
window_padding_width = 24;
|
||||||
|
|
||||||
|
cursor = "#928374";
|
||||||
|
cursor_text_color = "background";
|
||||||
|
|
||||||
|
url_color = "#83a598";
|
||||||
|
visual_bell_color = "#8ec07c";
|
||||||
|
bell_border_color = "#8ec07c";
|
||||||
|
active_border_color = "#d3869b";
|
||||||
|
inactive_border_color = "#665c54";
|
||||||
|
foreground = "#ebdbb2";
|
||||||
|
background = "#282828";
|
||||||
|
selection_foreground = "#928374";
|
||||||
|
selection_background = "#ebdbb2";
|
||||||
|
active_tab_foreground = "#fbf1c7";
|
||||||
|
active_tab_background = "#665c54";
|
||||||
|
inactive_tab_foreground= "#a89984";
|
||||||
|
inactive_tab_background= "#3c3836";
|
||||||
|
color0 = "#665c54";
|
||||||
|
color8 = "#7c6f64";
|
||||||
|
color1 = "#cc241d";
|
||||||
|
color9 = "#fb4934";
|
||||||
|
color2 = "#98971a";
|
||||||
|
color10 = "#b8bb26";
|
||||||
|
color3 = "#d79921";
|
||||||
|
color11 = "#fabd2f";
|
||||||
|
color4 = "#458588";
|
||||||
|
color12 = "#83a598";
|
||||||
|
color5 = "#b16286";
|
||||||
|
color13 = "#d3869b";
|
||||||
|
color6 = "#689d6a";
|
||||||
|
color14 = "#8ec07c";
|
||||||
|
color7 = "#a89984";
|
||||||
|
color15 = "#bdae93";
|
||||||
|
};
|
||||||
|
}
|
||||||
@@ -28,6 +28,8 @@
|
|||||||
minimap_width = 10;
|
minimap_width = 10;
|
||||||
minimap_auto_start = 1;
|
minimap_auto_start = 1;
|
||||||
minimap_auto_start_win_enter = 1;
|
minimap_auto_start_win_enter = 1;
|
||||||
|
|
||||||
|
mapleader = "<Space>";
|
||||||
};
|
};
|
||||||
|
|
||||||
clipboard = {
|
clipboard = {
|
||||||
@@ -60,7 +62,17 @@
|
|||||||
nvim-autopairs.enable = true;
|
nvim-autopairs.enable = true;
|
||||||
illuminate.enable = true;
|
illuminate.enable = true;
|
||||||
nvim-colorizer.enable = true;
|
nvim-colorizer.enable = true;
|
||||||
|
nvim-tree.enable = true;
|
||||||
undotree.enable = true;
|
undotree.enable = true;
|
||||||
|
telescope = {
|
||||||
|
enable = true;
|
||||||
|
keymaps = {
|
||||||
|
"<leader>ff" = "find_files";
|
||||||
|
"<leader>fg" = "live_grep";
|
||||||
|
"<leader>fb" = "buffers";
|
||||||
|
"<leader>fh" = "help_tags";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
treesitter = {
|
treesitter = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|||||||
Reference in New Issue
Block a user