fix(browser): zen by default
This commit is contained in:
parent
004e0d3e9a
commit
772322333c
3 changed files with 7 additions and 3 deletions
|
|
@ -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,
|
||||||
|
|
|
||||||
|
|
@ -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,
|
||||||
|
|
|
||||||
|
|
@ -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 [
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue