nvim.d/nvim/after/ftplugin/gotmpl.lua
Dan Anglin 746f07efdb
feat: add treesitter highlighting for gotmpl
Add detection, treesitter highlighting, and tab spacing settings for
gotmpl files.
2024-08-21 18:39:42 +01:00

7 lines
148 B
Lua

local setlocal = vim.opt_local
-- Tabs and spaces
setlocal.expandtab = false
setlocal.tabstop = 8
setlocal.shiftwidth = 8
setlocal.softtabstop = 8