From 8cb33fea4da5df6e370a242b1ebbc46e3282ff5f Mon Sep 17 00:00:00 2001 From: Yingjie Wang Date: Sun, 24 May 2026 18:56:39 -0400 Subject: [PATCH 1/5] update: use catppuccin --- lua/plugins/colorscheme.lua | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 lua/plugins/colorscheme.lua diff --git a/lua/plugins/colorscheme.lua b/lua/plugins/colorscheme.lua new file mode 100644 index 0000000..9361144 --- /dev/null +++ b/lua/plugins/colorscheme.lua @@ -0,0 +1,10 @@ +return { + { "catppuccin/nvim" }, + + { + "LazyVim/LazyVim", + opts = { + colorscheme = "catppuccin", + }, + }, +} -- 2.52.0 From d65ad91c8bd2fba4a54f999f187d5666f52e6a03 Mon Sep 17 00:00:00 2001 From: Yingjie Wang Date: Sun, 24 May 2026 19:07:29 -0400 Subject: [PATCH 2/5] update: let bufferline always show --- lua/plugins/bufferline.lua | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 lua/plugins/bufferline.lua diff --git a/lua/plugins/bufferline.lua b/lua/plugins/bufferline.lua new file mode 100644 index 0000000..bb57f7a --- /dev/null +++ b/lua/plugins/bufferline.lua @@ -0,0 +1,10 @@ +return { + { + "akinsho/bufferline.nvim", + opts = { + options = { + always_show_bufferline = true + } + } + } +} -- 2.52.0 From d700e8bad28e6f73c51a19c852140c422bdf62d2 Mon Sep 17 00:00:00 2001 From: Yingjie Wang Date: Sun, 24 May 2026 19:28:23 -0400 Subject: [PATCH 3/5] update: enable current_line_blame --- lua/plugins/gitsigns.lua | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 lua/plugins/gitsigns.lua diff --git a/lua/plugins/gitsigns.lua b/lua/plugins/gitsigns.lua new file mode 100644 index 0000000..e46808a --- /dev/null +++ b/lua/plugins/gitsigns.lua @@ -0,0 +1,6 @@ +return { + "lewis6991/gitsigns.nvim", + opts = { + current_line_blame = true, + }, +} -- 2.52.0 From 1a8d1665a2e214f24e0d9895cbbd9fe48e4ba5d2 Mon Sep 17 00:00:00 2001 From: Yingjie Wang Date: Mon, 25 May 2026 03:24:25 -0400 Subject: [PATCH 4/5] update: enable wrap by default --- lua/config/options.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lua/config/options.lua b/lua/config/options.lua index 3ea1454..92bd91c 100644 --- a/lua/config/options.lua +++ b/lua/config/options.lua @@ -1,3 +1,5 @@ -- Options are automatically loaded before lazy.nvim startup -- Default options that are always set: https://github.com/LazyVim/LazyVim/blob/main/lua/lazyvim/config/options.lua -- Add any additional options here + +vim.opt.wrap = true -- 2.52.0 From ed407bac75683c76e301ce26c4a68a5e91832b5c Mon Sep 17 00:00:00 2001 From: Yingjie Wang Date: Mon, 25 May 2026 03:25:04 -0400 Subject: [PATCH 5/5] update: enable clangd and treesitter-context extras --- lazy-lock.json | 2 ++ lazyvim.json | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/lazy-lock.json b/lazy-lock.json index 1e90823..097e2af 100644 --- a/lazy-lock.json +++ b/lazy-lock.json @@ -3,6 +3,7 @@ "blink.cmp": { "branch": "main", "commit": "78336bc89ee5365633bcf754d93df01678b5c08f" }, "bufferline.nvim": { "branch": "main", "commit": "655133c3b4c3e5e05ec549b9f8cc2894ac6f51b3" }, "catppuccin": { "branch": "main", "commit": "8edd468af4d63212b84d69b2ddb5ffc9023ef5eb" }, + "clangd_extensions.nvim": { "branch": "main", "commit": "78c2ecd659d54972be17aa6ba2deac3c53223b80" }, "conform.nvim": { "branch": "master", "commit": "619363c30309d29ffa631e67c8183f2a72caa373" }, "flash.nvim": { "branch": "main", "commit": "fcea7ff883235d9024dc41e638f164a450c14ca2" }, "friendly-snippets": { "branch": "main", "commit": "6cd7280adead7f586db6fccbd15d2cac7e2188b9" }, @@ -21,6 +22,7 @@ "nvim-lint": { "branch": "master", "commit": "d48f3a76189d03b2239f6df1b2f7e3fa8353743b" }, "nvim-lspconfig": { "branch": "master", "commit": "a4ed4e761c400849e8c9f8bda33e5083f890268c" }, "nvim-treesitter": { "branch": "main", "commit": "7caec274fd19c12b55902a5b795100d21531391f" }, + "nvim-treesitter-context": { "branch": "master", "commit": "b311b30818951d01f7b4bf650521b868b3fece16" }, "nvim-treesitter-textobjects": { "branch": "main", "commit": "851e865342e5a4cb1ae23d31caf6e991e1c99f1e" }, "nvim-ts-autotag": { "branch": "main", "commit": "88c1453db4ba7dd24131086fe51fdf74e587d275" }, "persistence.nvim": { "branch": "main", "commit": "b20b2a7887bd39c1a356980b45e03250f3dce49c" }, diff --git a/lazyvim.json b/lazyvim.json index d8bcaf6..9c22765 100644 --- a/lazyvim.json +++ b/lazyvim.json @@ -1,6 +1,7 @@ { "extras": [ - + "lazyvim.plugins.extras.lang.clangd", + "lazyvim.plugins.extras.ui.treesitter-context" ], "install_version": 8, "news": { -- 2.52.0