diff --git a/bash/.bashrc.d/startup b/bash/.bashrc.d/startup index 6241fee..d56a273 100644 --- a/bash/.bashrc.d/startup +++ b/bash/.bashrc.d/startup @@ -1,2 +1,3 @@ export PATH=$PATH:/usr/local/go/bin +export PATH=$PATH:$HOME/.opencode/bin fastfetch diff --git a/nvim/.config/nvim/lua/chadrc.lua b/nvim/.config/nvim/lua/chadrc.lua index 4c59c56..8b96ce9 100644 --- a/nvim/.config/nvim/lua/chadrc.lua +++ b/nvim/.config/nvim/lua/chadrc.lua @@ -17,11 +17,34 @@ M.base46 = { M.nvdash = { load_on_startup = true } M.ui = { - -- theme_toggle = { "rosepine-dawn", "catppuccin" } -- tabufline = { -- lazyload = false -- }, - +} +M.mason = { + pkgs = { + "azure-pipelines-language-server", + "bash-language-server", + "bicep-lsp", + "black", + "css-lsp", + "docker-language-server", + "gotests", + "html-lsp", + "htmx-lsp", + "lua-language-server", + "mdformat", + "gopls", + "omnisharp", + "angular-language-server", + "typescript-language-server", + "postgres-language-server", + "prettier", + "sqls", + "tailwindcss-language-server", + "yaml-language-server", + "jq" + } } return M diff --git a/nvim/.config/nvim/lua/options.lua b/nvim/.config/nvim/lua/options.lua index 70298ec..cb18563 100644 --- a/nvim/.config/nvim/lua/options.lua +++ b/nvim/.config/nvim/lua/options.lua @@ -3,4 +3,6 @@ require "nvchad.options" -- add yours here! local o = vim.o -o.cursorlineopt ='both' -- to enable cursorline! +o.cursorlineopt = 'both' -- to enable cursorline! +o.relativenumber = true +o.scrolloff = 20