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
|
|
@ -1,6 +1,5 @@
|
|||
{pkgs, ...}: {
|
||||
home.packages = with pkgs; [
|
||||
calibre
|
||||
pkgs.kdePackages.okular
|
||||
];
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,5 +1,7 @@
|
|||
_: {
|
||||
programs.zen-browser.profiles.main.settings = {
|
||||
"browser.tabs.allow_transparent_browser" = true;
|
||||
|
||||
"zen.welcome-screen.seen" = true;
|
||||
"zen.watermark.enabled" = false;
|
||||
"browser.ml.chat.enabled" = false;
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
home.sessionVariables = {
|
||||
BROWSER = "zen";
|
||||
};
|
||||
stylix.targets.zen-browser.profileNames = ["main"];
|
||||
#stylix.targets.zen-browser.profileNames = ["main"];
|
||||
home.packages = [pkgs.ff2mpv-rust];
|
||||
programs.zen-browser = {
|
||||
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
|
||||
nui-nvim
|
||||
neo-tree-nvim
|
||||
# hardtime
|
||||
hardtime-nvim
|
||||
nvim-notify
|
||||
# Session management
|
||||
resession-nvim
|
||||
# obsidian vault support for neovim
|
||||
obsidian-nvim
|
||||
# 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
|
||||
local telescope = require('telescope.builtin')
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue