nvim: add slimline

This commit is contained in:
2026-01-21 23:34:02 +01:00
parent 0be2ea5be3
commit d45450227e
3 changed files with 13 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
vim.pack.add({ "https://github.com/sschleemilch/slimline.nvim" })
local ok, slimline = pcall(require, "slimline")
if ok then
slimline.setup()
else
print("plugin slimline missing")
end