mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 12:29:19 -08:00
feat: awawa
This commit is contained in:
parent
8acbf1407a
commit
47c88c3dfc
7 changed files with 13 additions and 31 deletions
|
|
@ -13,6 +13,7 @@
|
||||||
enable = true;
|
enable = true;
|
||||||
defaultApplications = {
|
defaultApplications = {
|
||||||
"inode/directory" = "pcmanfm.desktop";
|
"inode/directory" = "pcmanfm.desktop";
|
||||||
|
"text/plain" = "nvim.desktop";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,5 @@
|
||||||
{pkgs, ...}: {
|
{pkgs, ...}: {
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
calibre
|
|
||||||
pkgs.kdePackages.okular
|
pkgs.kdePackages.okular
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -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;
|
||||||
|
|
|
||||||
|
|
@ -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 = [
|
||||||
|
|
|
||||||
9
home/profiles/graphical/firefox/yomitan.nix
Normal file
9
home/profiles/graphical/firefox/yomitan.nix
Normal file
|
|
@ -0,0 +1,9 @@
|
||||||
|
_: {
|
||||||
|
programs.zen-browser.profiles.main.extensions = {
|
||||||
|
#settings."{6b733b82-9261-47ee-a595-2dda294a4d08}".settings = {
|
||||||
|
# options = builtins.toJSON {
|
||||||
|
# showGuide = false;
|
||||||
|
# };
|
||||||
|
#};
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
@ -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
|
||||||
|
|
|
||||||
|
|
@ -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')
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue