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

11 lines
177 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-07-05 17:00:27 +02:00
optl.omnifunc = "v:lua.vim.lua_omnifunc"
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()