Add theme and treesitter-context

This commit is contained in:
Shockwave 2024-11-12 08:34:05 +08:00
parent 08770ba2f0
commit a3b426acca
2 changed files with 33 additions and 0 deletions

View File

@ -8,6 +8,11 @@ if not status_ok then
return return
end end
local status_ok, context = pcall(require, "treesitter-context")
if not status_ok then
return
end
local ok, op = pcall(require, "editor.option") local ok, op = pcall(require, "editor.option")
if not ok then if not ok then
print("editor.option load error") print("editor.option load error")
@ -72,3 +77,19 @@ configs.setup({
indent = { enable = true, disable = { "python", "css" } }, indent = { enable = true, disable = { "python", "css" } },
}) })
context.setup({
enable = true, -- Enable this plugin (Can be enabled/disabled later via commands)
multiwindow = false, -- Enable multiwindow support.
max_lines = 0, -- How many lines the window should span. Values <= 0 mean no limit.
min_window_height = 0, -- Minimum editor window height to enable context. Values <= 0 mean no limit.
line_numbers = true,
multiline_threshold = 20, -- Maximum number of lines to show for a single context
trim_scope = 'outer', -- Which context lines to discard if `max_lines` is exceeded. Choices: 'inner', 'outer'
mode = 'cursor', -- Line used to calculate context. Choices: 'cursor', 'topline'
-- Separator between context and content. Should be a single character string, like '-'.
-- When separator is set, the context will only show up when there are at least 2 lines above cursorline.
separator = nil,
zindex = 20, -- The Z-index of the context window
on_attach = nil, -- (fun(buf: integer): boolean) return false to disable attaching
})

View File

@ -66,6 +66,11 @@ local plugins = {
lazy = false, lazy = false,
}, },
{
"nvim-treesitter/nvim-treesitter-context",
event = "VeryLazy",
},
{ {
"williamboman/mason.nvim", "williamboman/mason.nvim",
event = "VeryLazy", event = "VeryLazy",
@ -168,6 +173,13 @@ local plugins = {
end end
}, },
{
"folke/tokyonight.nvim",
lazy = false,
priority = 1000,
opts = {},
},
{ {
"ray-x/go.nvim", "ray-x/go.nvim",
event = {"CmdlineEnter"}, event = {"CmdlineEnter"},