fix(browser): zen by default

This commit is contained in:
Barrett Ruth 2026-03-07 21:51:15 -05:00
parent 004e0d3e9a
commit 772322333c
Signed by: barrett
GPG key ID: A6C96C9349D2FC81
3 changed files with 7 additions and 3 deletions

View file

@ -153,7 +153,7 @@ return {
'barrettruth/pending.nvim', 'barrettruth/pending.nvim',
before = function() before = function()
vim.g.pending = { vim.g.pending = {
debug = true, debug = false,
data_path = (os.getenv('XDG_STATE_HOME') or (os.getenv('HOME') .. '/.local/state')) .. '/nvim/pending/tasks.json', data_path = (os.getenv('XDG_STATE_HOME') or (os.getenv('HOME') .. '/.local/state')) .. '/nvim/pending/tasks.json',
date_format = '%d/%m/%y', date_format = '%d/%m/%y',
date_syntax = 'd', date_syntax = 'd',
@ -336,7 +336,7 @@ return {
end, end,
}) })
vim.g.preview = { vim.g.preview = {
debug = '/tmp/preview.log', debug = false,
github = true, github = true,
typst = { open = { 'sioyek', '--new-instance' } }, typst = { open = { 'sioyek', '--new-instance' } },
plantuml = true, plantuml = true,

View file

@ -225,7 +225,7 @@ return {
enabled = true, enabled = true,
before = function() before = function()
vim.g.diffs = { vim.g.diffs = {
debug = '/tmp/diffs.log', debug = false,
integrations = { fugitive = true }, integrations = { fugitive = true },
extra_filetypes = { 'diff' }, extra_filetypes = { 'diff' },
hide_prefix = false, hide_prefix = false,

View file

@ -18,6 +18,7 @@ let
python = true; python = true;
ocaml = true; ocaml = true;
docker = true; docker = true;
zen = true;
aws = true; aws = true;
psql = true; psql = true;
tex = true; tex = true;
@ -115,6 +116,9 @@ in
(lib.mkIf claude { (lib.mkIf claude {
CLAUDE_CONFIG_DIR = "${config.xdg.configHome}/claude"; CLAUDE_CONFIG_DIR = "${config.xdg.configHome}/claude";
}) })
(lib.mkIf zen {
BROWSER = "zen";
})
]; ];
home.sessionPath = lib.mkMerge [ home.sessionPath = lib.mkMerge [