dap, xdebug, flexoki colorscheme, trouble fix, lualine fix

This commit is contained in:
2025-05-12 13:18:49 +03:00
parent 631d0e6740
commit f27c3d3299
15 changed files with 316 additions and 31 deletions

10
lua/autocommands.lua Normal file
View File

@@ -0,0 +1,10 @@
vim.api.nvim_create_autocmd({'BufEnter','BufAdd','BufNew','BufNewFile','BufWinEnter'}, {
group = vim.api.nvim_create_augroup('TS_FOLD_WORKAROUND', {}),
callback = function()
-- Folding code method
-- vim.opt.foldmethod = 'expr'
-- Expression for folding code
-- vim.opt.foldexpr = 'nvim_treesitter#foldexpr()'
end
})