user/neovim-minimal: fix treesitter errors
Some checks failed
CI / Build linux-lava for x86_64-linux (push) Has been cancelled

This commit is contained in:
Cilly Leang 2026-03-19 20:42:32 +11:00
parent 2d15fb3a5e
commit f8312bc6f2
Signed by: cilly
GPG key ID: 6500251E087653C9

View file

@ -1,5 +1,5 @@
-- Keybindings -- Keybindings
local map = vim.api.nvim_set_keymap local map = vim.keymap.set
map('n', '<C-H>', '<C-W>h', { noremap = true }) map('n', '<C-H>', '<C-W>h', { noremap = true })
map('n', '<C-J>', '<C-W>j', { noremap = true }) map('n', '<C-J>', '<C-W>j', { noremap = true })
map('n', '<C-K>', '<C-W>k', { noremap = true }) map('n', '<C-K>', '<C-W>k', { noremap = true })
@ -18,6 +18,7 @@ vim.opt.number = true
vim.opt.cursorline = true vim.opt.cursorline = true
vim.opt.signcolumn = "yes:3" vim.opt.signcolumn = "yes:3"
vim.opt.title = true vim.opt.title = true
vim.opt.termguicolors = true
vim.opt.updatetime = 0 vim.opt.updatetime = 0
vim.opt.clipboard:prepend('unnamedplus') vim.opt.clipboard:prepend('unnamedplus')
@ -47,7 +48,7 @@ vim.g.signify_sign_change = vim.g.signify_sign_add
vim.g.signify_sign_change_delete = vim.g.signify_sign_delete vim.g.signify_sign_change_delete = vim.g.signify_sign_delete
-- Plugins -- Plugins
require('nvim-treesitter.configs').setup { require('nvim-treesitter').setup {
highlight = { enable = true }, highlight = { enable = true },
indent = { enable = false } indent = { enable = false }
} }