Compare commits

...

2 commits

Author SHA1 Message Date
cy
2622119933 just making then nicer 2025-01-21 21:59:59 -05:00
cy
cfa298fb63 fix kde apps looking weird 2025-01-21 16:47:47 -05:00
4 changed files with 29 additions and 11 deletions

View file

@ -12,12 +12,13 @@
# how many windows should be open before kitty asks # how many windows should be open before kitty asks
# for confirmation # for confirmation
confirm_os_window_close = 0; confirm_os_window_close = 0;
clear_all_shortcuts = true;
}; };
keybindings = { keybindings = {
# kitty_mod is ctrl+shift by default # kitty_mod is ctrl+shift by default
"kitty_mod+c" = "copy_to_clipboard"; "kitty_mod+c" = "copy_to_clipboard";
"kitty_mod+v" = "paste_from_clipboard"; "kitty_mod+v" = "paste_from_clipboard";
"ctrl+q" = "quit"; # "ctrl+q" = "quit";
# windows # windows
"kitty_mod+h" = "neighboring_window left"; "kitty_mod+h" = "neighboring_window left";
@ -28,12 +29,14 @@
"kitty_mod+alt+j" = "move_window down"; "kitty_mod+alt+j" = "move_window down";
"kitty_mod+k" = "neighboring_window up"; "kitty_mod+k" = "neighboring_window up";
"kitty_mod+alt+k" = "move_window up"; "kitty_mod+alt+k" = "move_window up";
"ctrl+f2" = "detach_tab";
"ctrl+f3" = "detach_window new-tab"; "ctrl+f3" = "detach_window new-tab";
"ctrl+f4" = "detach_window prev-tab"; "ctrl+f4" = "detach_window tab-left";
"ctrl+f5" = "load_config_file";
"ctrl+alt+l" = "next_layout"; "ctrl+alt+l" = "next_layout";
"ctrl+alt+t" = "goto_layout tall"; "ctrl+alt+t" = "goto_layout tall";
"ctrl+alt+s" = "goto_layout stack"; "ctrl+alt+s" = "goto_layout stack";
"kitty_mod+enter" = "new_window_with_cwd";
"kitty_mod+r" = "resize_window";
# tabs # tabs
"kitty_mod+n" = "next_tab"; "kitty_mod+n" = "next_tab";
@ -41,6 +44,16 @@
"kitty_mod+alt+n" = "move_tab_forward"; "kitty_mod+alt+n" = "move_tab_forward";
"kitty_mod+alt+p" = "move_tab_backward"; "kitty_mod+alt+p" = "move_tab_backward";
"kitty_mod+w" = "close_tab"; "kitty_mod+w" = "close_tab";
"kitty_mod+t" = "new_tab_with_cwd";
"ctrl+f2" = "detach_tab";
# hints
"kitty_mod+o>o" = "open_url_with_hints";
"kitty_mod+o>p" = "kitten hints --type path --program -";
"kitty_mod+o>n" = "kitten hints --type line --program -";
"kitty_mod+o>w" = "kitten hints --type word --program -";
"kitty_mod+o>h" = "kitten hints --type hash --program -";
"kitty_mod+o>l" = "kitten hints --type linenum";
}; };
}; };
} }

View file

@ -94,6 +94,8 @@ in
title = "^Browse"; title = "^Browse";
} }
{ app-id = "com.mitchellh.ghostt"; } { app-id = "com.mitchellh.ghostt"; }
{ app-id = "org.kde.okular"; }
{ app-id = "kitty"; }
]; ];
default-column-width.proportion = .5; default-column-width.proportion = .5;
} }

View file

@ -1,4 +1,4 @@
{ pkgs, ... }: { pkgs, inputs, ... }:
{ {
programs.nixvim = { programs.nixvim = {
enable = true; enable = true;
@ -15,15 +15,18 @@
incsearch = true; incsearch = true;
smartcase = true; smartcase = true;
}; };
colorscheme = "iceberg"; colorscheme = "github_dark_tritanopia";
clipboard.register = "unnamedplus"; clipboard.register = "unnamed";
globals = { globals = {
mapleader = ","; mapleader = ",";
}; };
extraPlugins = with pkgs.vimPlugins; [ extraPlugins = [
iceberg-vim (pkgs.vimUtils.buildVimPlugin {
name = "gitub-theme";
src = inputs.nvim-github-theme;
})
]; ];
keymaps = [ keymaps = [

View file

@ -22,9 +22,9 @@
qt = { qt = {
enable = true; enable = true;
platformTheme.name = "gtk"; platformTheme.name = "kde";
style.name = "adwaita-dark"; style.name = "breeze-dark";
style.package = pkgs.adwaita-qt; style.package = pkgs.kdePackages.breeze;
}; };
gtk = { gtk = {