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

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

Loading…
Cancel
Save