feat: awawa

This commit is contained in:
Kat Inskip 2025-09-07 02:48:49 -07:00
parent 8acbf1407a
commit 47c88c3dfc
Signed by: kat
GPG key ID: 465E64DECEA8CF0F
7 changed files with 13 additions and 31 deletions

View file

@ -13,6 +13,7 @@
enable = true; enable = true;
defaultApplications = { defaultApplications = {
"inode/directory" = "pcmanfm.desktop"; "inode/directory" = "pcmanfm.desktop";
"text/plain" = "nvim.desktop";
}; };
}; };
}; };

View file

@ -1,6 +1,5 @@
{pkgs, ...}: { {pkgs, ...}: {
home.packages = with pkgs; [ home.packages = with pkgs; [
calibre
pkgs.kdePackages.okular pkgs.kdePackages.okular
]; ];
} }

View file

@ -1,5 +1,7 @@
_: { _: {
programs.zen-browser.profiles.main.settings = { programs.zen-browser.profiles.main.settings = {
"browser.tabs.allow_transparent_browser" = true;
"zen.welcome-screen.seen" = true; "zen.welcome-screen.seen" = true;
"zen.watermark.enabled" = false; "zen.watermark.enabled" = false;
"browser.ml.chat.enabled" = false; "browser.ml.chat.enabled" = false;

View file

@ -6,7 +6,7 @@
home.sessionVariables = { home.sessionVariables = {
BROWSER = "zen"; BROWSER = "zen";
}; };
stylix.targets.zen-browser.profileNames = ["main"]; #stylix.targets.zen-browser.profileNames = ["main"];
home.packages = [pkgs.ff2mpv-rust]; home.packages = [pkgs.ff2mpv-rust];
programs.zen-browser = { programs.zen-browser = {
nativeMessagingHosts = [ nativeMessagingHosts = [

View file

@ -0,0 +1,9 @@
_: {
programs.zen-browser.profiles.main.extensions = {
#settings."{6b733b82-9261-47ee-a595-2dda294a4d08}".settings = {
# options = builtins.toJSON {
# showGuide = false;
# };
#};
};
}

View file

@ -55,11 +55,6 @@ in {
# tree # tree
nui-nvim nui-nvim
neo-tree-nvim neo-tree-nvim
# hardtime
hardtime-nvim
nvim-notify
# Session management
resession-nvim
# obsidian vault support for neovim # obsidian vault support for neovim
obsidian-nvim obsidian-nvim
# commentry # commentry

View file

@ -225,30 +225,6 @@ require('neorg').setup {
}, },
} }
-- session managemenet
require("resession").setup({
autosave = {
enabled = true,
interval = 60,
notify = true,
},
})
vim.api.nvim_create_autocmd("VimLeavePre", {
callback = function()
-- Always save a special session named "last"
resession.save("last")
end,
})
-- hardtime
vim.notify = require("notify")
--[[require("hardtime").setup({
disable_mouse = false,
disabled_keys = {},
})]]--
-- telescope -- telescope
local telescope = require('telescope.builtin') local telescope = require('telescope.builtin')