Add firefox profile

main
trivernis 5 months ago
parent e7f87c24e3
commit aba9242ac6
Signed by: Trivernis
GPG Key ID: 7E6D18B61C8D2F4B

@ -0,0 +1,15 @@
/*
=== managed by silo ===
*/
#main-window #titlebar {
overflow: hidden;
transition: height 0.3s 0.3s !important;
}
/* Hidden state: Hide native tabs strip */
#main-window[titlepreface*=" "] #titlebar { height: 0 !important; }
/* Hidden state: Fix z-index of active pinned tabs */
#main-window[titlepreface*=" "] #tabbrowser-tabs { z-index: 0 !important; }

@ -0,0 +1,12 @@
package.path = package.path .. ';../?.lua'
local silo = require 'silo'
local sutils = require 'silo-utils'
local config = sutils.enhance_dircfg {
path = silo.config.firefox_profile,
mode = "exclude",
exclude = {},
}
return config

@ -27,10 +27,13 @@ command = "pug-lsp"
args = [] args = []
[language-server.astro-lsp] [language-server.astro-ls]
command = "/usr/lib/node_modules/@astrojs/language-server/bin/nodeServer.js" command = "astro-ls"
args = ["--stdio"] args = ["--stdio"]
[language-server.astro-ls.config]
typescript = {}
[language-server.vls] [language-server.vls]
command = "vls" command = "vls"
args = [] args = []
@ -154,7 +157,7 @@ source = { git = "https://github.com/zealot128/tree-sitter-pug", rev = "a7ff31a3
[[language]] [[language]]
name = "astro" name = "astro"
language-servers = [ "astro-lsp" ] language-servers = [ "astro-ls" ]
[[language]] [[language]]

@ -1,4 +1,5 @@
local silo = require 'silo' local silo = require 'silo'
local path = require 'path'
local config = silo.default_config local config = silo.default_config
-- put your packages here -- put your packages here
@ -17,6 +18,8 @@ local mod = function(packages)
} }
end end
config.firefox_profile = path.join {silo.dirs.home, ".mozilla/firefox/default"}
-- default configurations for software -- default configurations for software
config.broot = { icons = false } config.broot = { icons = false }
config.wezterm = { font_size = 12 } config.wezterm = { font_size = 12 }

Loading…
Cancel
Save