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:
@@ -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
|
||||
|
||||
@@ -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 = {
|
||||
|
||||
Reference in New Issue
Block a user