mirror of
https://github.com/olexsmir/dotfiles.git
synced 2026-01-15 08:41:34 +02:00
update lvim
This commit is contained in:
parent
a537caddf0
commit
da1068fdc2
15 changed files with 169 additions and 127 deletions
14
config/lvim/lua/plug/ts-unit.lua
Normal file
14
config/lvim/lua/plug/ts-unit.lua
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
local M = {}
|
||||
|
||||
function M.setup()
|
||||
local ok, ts_unit = pcall(require, "ts-unit")
|
||||
if not ok then
|
||||
return
|
||||
end
|
||||
|
||||
ts_unit.setup {
|
||||
keymaps = true,
|
||||
}
|
||||
end
|
||||
|
||||
return M
|
||||
Loading…
Add table
Add a link
Reference in a new issue