Make various small clean-up changes

This commit is contained in:
2025-11-08 15:44:42 -06:00
parent 066ef0e6fa
commit 1377026a56
10 changed files with 10 additions and 39 deletions

View File

@@ -95,7 +95,7 @@ return {
end,
},
{
"jay-babu/mason-nvim-dap.nvim", -- TODO: here, or handle manually outside of neovim?
"jay-babu/mason-nvim-dap.nvim", -- TODO: install here? manually outside of neovim?
dependencies = {
"williamboman/mason.nvim",
"mfussenegger/nvim-dap",

View File

@@ -27,12 +27,10 @@ return {
},
},
{
-- TODO: decide if i want rose-pine, remove from file if not
"rose-pine/neovim",
name = "rose-pine",
},
{
-- TODO: decide if i want tokyonight, remove from file if not
"folke/tokyonight.nvim",
opts = {
style = "night", -- "night", "storm", "moon", "day"
@@ -60,8 +58,6 @@ return {
},
{
'ribru17/bamboo.nvim',
-- lazy = false,
-- priority = 1000,
config = function()
require('bamboo').setup { }
require('bamboo').load()

View File

@@ -17,7 +17,7 @@ return {
ignore_install = {
"csv",
},
-- indent = { enable = true }, -- TODO: do i want this?
indent = { enable = true },
highlight = {
enable = true, -- `false` will disable the whole extension
disable = function(lang, buf)
@@ -51,26 +51,7 @@ return {
-- branch = "master",
-- },
-- }
-- vim.treesitter.language.register("templ", "templ")
end
},
-- {
-- -- TODO: decide if needed/wanted
-- "nvim-treesitter/nvim-treesitter-context",
-- after = "nvim-treesitter",
-- opts = {
-- enable = false, -- can enable/disable via manual command
-- multiwindow = false,
-- max_lines = 0, -- lines the window should span; x <= 0 means no limit
-- min_window_height = 10, -- min window height to enable; x <= 0 means no limit
-- line_numbers = true,
-- multiline_threshold = 40, -- max lines to show for a single context
-- trim_scope = 'outer', -- 'inner', 'outer'; discard lines if max_lines exceeded
-- mode = 'cursor', -- 'cursor', 'topline'; line used to calculate context
-- separator = "-", -- 1 char, like '-'; only shown when >= 2 lines above
-- zindex = 20, -- z-index of the context window
-- on_attach = nil, -- (fun(buf: integer): boolean); return false to disable attaching
-- },
-- },
}