This commit is contained in:
Hadi
2024-10-07 10:13:21 +02:00
parent 905cc9a885
commit ab65fe342b
75 changed files with 132 additions and 436 deletions

View File

@@ -60,6 +60,12 @@
action = "<cmd>Oil<cr>";
options.desc = "Oil";
}
{
key = "<leader>E";
action = "<cmd>Neotree<cr>";
options.desc = "Neotree";
}
{
key = "<C-h>";
action = "<cmd>TmuxNavigateLeft<cr>";

View File

@@ -14,6 +14,10 @@
telescope = {
enable = true;
extensions.fzf-native = { enable = true; };
settings = {
selection_caret = "/ ";
layout_config = { prompt_position = "top"; };
};
};
todo-comments.enable = true;
treesitter = {

View File

@@ -1,15 +1,15 @@
{ config, ... }: {
{ config, lib, ... }: {
programs.fzf = {
enable = true;
enableZshIntegration = true;
# colors = {
# "fg+" = config.var.theme.colors.accentName;
# "bg+" = "-1";
# "fg" = "white";
# "bg" = "-1";
# "prompt" = "grey";
# "pointer" = config.var.theme.colors.accentName;
# };
colors = lib.mkForce {
"fg+" = "#" + config.lib.stylix.colors.base0D;
"bg+" = "-1";
"fg" = "#" + config.lib.stylix.colors.base05;
"bg" = "-1";
"prompt" = "#" + config.lib.stylix.colors.base03;
"pointer" = "#" + config.lib.stylix.colors.base0D;
};
defaultOptions = [
"--margin=1"
"--layout=reverse"

View File

@@ -60,11 +60,10 @@
sl = "ls";
open = "${pkgs.xdg_utils}/bin/xdg-open";
icat = "${pkgs.kitty}/bin/kitty +kitten icat";
wireguard-import = "nmcli connection import type wireguard file";
neorg =
"cd ~/nextcloud/neorg && vim -c ':ZenMode' -c ':Telescope find_files' index.norg";
notes =
"cd ~/nextcloud/Notes && vim -c ':ZenMode' -c ':Telescope find_files' index.md";
notes = "cd ~/nextcloud/Notes && -c ':Telescope find_files' index.md";
note = "notes";
# git

View File

@@ -9,6 +9,13 @@ in {
enable = true;
theme = lib.mkForce spicePkgs.themes.text;
# TODO: Colors not working
customColorScheme = lib.mkForce {
button = "#${config.lib.stylix.colors.base0D}";
button-active = "#${config.lib.stylix.colors.base0D}";
tab-active = "#${config.lib.stylix.colors.base0D}";
};
enabledExtensions = with spicePkgs.extensions; [
playlistIcons
lastfm

View File

@@ -12,28 +12,5 @@
sort_reverse = true;
};
};
theme = {
filetype = {
rules = [
{
fg = "#7AD9E5";
mime = "image/*";
}
{
fg = "#F3D398";
mime = "video/*";
}
{
fg = "#F3D398";
mime = "audio/*";
}
{
fg = "#CD9EFC";
mime = "application/x-bzip";
}
];
};
};
};
}