created a tokyo night theme for hyprland

This commit is contained in:
2025-04-08 16:55:15 +02:00
parent e03e073a6b
commit f8decdb9c4
26 changed files with 2968 additions and 230 deletions

View File

@@ -1,26 +1,18 @@
-- lsp.lua
-- Install Mason first for managing servers
require("mason").setup({
ui = {
icons = {
package_installed = "",
package_pending = "",
package_uninstalled = ""
}
}
})
-- Connect Mason with lspconfig
require("mason-lspconfig").setup({
-- Automatically install these servers
ensure_installed = {
"lua_ls", -- Lua
"pyright", -- Python
"biome", -- TypeScript/JavaScript
"rust_analyzer", -- Rust
"gopls", -- Go
"clangd", -- C/C++
"bashls", -- Bash
"lua_ls", -- Lua
"pyright", -- Python
"biome", -- TypeScript/JavaScript
"rust_analyzer", -- Rust
"gopls", -- Go
"clangd", -- C/C++
"bashls", -- Bash
"emmet_language_server", -- Emmet
"somesass_ls", -- SASS
"hyprls", -- Hyprlang
},
automatic_installation = true,
})