copilot-updates and other tweaks #28

Merged
softinio merged 4 commits from copilot-updates into main 2024-10-06 23:04:14 -07:00
2 changed files with 14 additions and 3 deletions
Showing only changes of commit c182511558 - Show all commits

View file

@ -48,7 +48,7 @@ else
vim.o.breakindent = true
-- smart indenting
vim.o.smartindent = false
vim.o.smartindent = true
-- Save undo history
vim.o.undofile = true

View file

@ -4,7 +4,12 @@ return {
-- build = function()
-- pcall(require("nvim-treesitter.install").update({ with_sync = true }))
-- end,
dependencies = { "nvim-treesitter/nvim-treesitter-textobjects", "nvim-treesitter/playground" },
dependencies = {
"nvim-treesitter/nvim-treesitter-context",
"nvim-treesitter/nvim-treesitter-refactor",
"nvim-treesitter/nvim-treesitter-textobjects",
"nvim-treesitter/playground",
},
config = function()
require("nvim-treesitter.configs").setup({
-- Add languages to be installed here that you want installed for treesitter
@ -58,7 +63,13 @@ return {
auto_install = true,
highlight = { enable = true },
indent = { enable = true },
indent = {
enable = true,
disable = {
"python",
"css",
},
},
incremental_selection = {
enable = true,
keymaps = {