nvim update

This commit is contained in:
RafayAhmad7548 2026-05-18 06:50:02 +05:00
parent d968da0ae0
commit 5930a3f5cd
Signed by: RafayAhmad
SSH key fingerprint: SHA256:WURX8viobA1uawb4dWM3LqYrY+XPcZcXhAXAlrYdhtE
4 changed files with 10 additions and 1 deletions

View file

@ -1,6 +1,7 @@
return {
{
'lewis6991/gitsigns.nvim',
-- dir = '~/Stuff/Coding/gitsigns.nvim',
opts = {
signs = {
add = { text = '' },

View file

@ -1,3 +1,9 @@
vim.api.nvim_create_autocmd('FileType', {
callback = function ()
pcall(vim.treesitter.start)
end
})
return {
'nvim-treesitter/nvim-treesitter',
build = ':TSUpdate',