1
0
Fork 0
dot/.config/nvim/after/ftplugin/lua.lua

10 lines
136 B
Lua
Raw Normal View History

2024-05-23 09:38:56 +02:00
local optl = vim.opt_local
2024-05-05 17:34:33 +02:00
-- options
2024-05-23 09:38:56 +02:00
optl.tabstop = 2
optl.shiftwidth = 2
optl.expandtab = true
2024-01-27 21:12:38 +01:00
2024-05-05 17:34:33 +02:00
-- treesitter
2024-01-27 21:12:38 +01:00
vim.treesitter.start()