clone of my dotfiles.ssp.sh
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix lsp

sspaeti 47cee968 88dc963d

+5 -5
+4 -4
nvim/.config/nvim/lua/sspaeti/plugins/lsp/lspconfig.lua
··· 122 122 vim.diagnostic.config({ 123 123 signs = { 124 124 text = { 125 - [vim.diagnostic.severity.ERROR] = "", 126 - [vim.diagnostic.severity.WARN] = "", 127 - [vim.diagnostic.severity.HINT] = "ï µ", 128 - [vim.diagnostic.severity.INFO] = "", 125 + [vim.diagnostic.severity.ERROR] = "󰅚", 126 + [vim.diagnostic.severity.WARN] = "", 127 + [vim.diagnostic.severity.HINT] = "󰌶", 128 + [vim.diagnostic.severity.INFO] = "", 129 129 }, 130 130 }, 131 131 })
+1 -1
nvim/.config/nvim/lua/sspaeti/plugins/treesitter.lua
··· 14 14 return 15 15 end 16 16 treesitter.setup { 17 - ensure_installed = { "vimdoc", "python", "markdown", "markdown_inline", "css", "html", "javascript", "yaml", "bash", "json", "lua", "regex", "sql", "toml", "vim", "rust" }, -- one of "all" or a list of languages 17 + ensure_installed = { "vimdoc", "python", "markdown", "markdown_inline", "css", "html", "javascript", "yaml", "bash", "json", "lua", "regex", "sql", "toml", "vim", "rust", "glimmer" }, -- one of "all" or a list of languages 18 18 sync_install = false, 19 19 auto_install = true, 20 20 highlight = {