Various changes on Neovim

- Use UTF-8 encoding as default format
- Added Treesitter for Bash and OrgMode
- Update Neovim plugins
This commit is contained in:
Fabio Scotto di Santolo
2025-08-03 23:17:50 +02:00
parent 77cddf23c8
commit 5dca4c97e0
3 changed files with 11 additions and 4 deletions

View File

@@ -4,6 +4,10 @@
local opt = vim.opt
-- Encoding
opt.encoding = "utf-8"
opt.fileencoding = "utf-8"
-- Line numbers
opt.number = true
opt.relativenumber = true

View File

@@ -1,5 +1,6 @@
require("nvim-treesitter.configs").setup({
ensure_installed = {
"bash",
"c",
"go",
"gomod",
@@ -9,6 +10,7 @@ require("nvim-treesitter.configs").setup({
"lua",
"markdown",
"python",
"org",
"zig",
},
highlight = {