Add custom plugins.

This commit is contained in:
Sebastian Bugge 2024-01-22 01:47:50 +01:00
parent 7a10a75dc3
commit 7d1b1005f0
Signed by: kaholaz
GPG key ID: 2EFFEDEE03519691
5 changed files with 72 additions and 0 deletions

11
lua/plugins/perl.lua Normal file
View file

@ -0,0 +1,11 @@
vim.api.nvim_create_autocmd({ "FileType" }, {
pattern = { "perl" },
callback = function()
vim.opt.tabstop = 2
vim.opt.softtabstop = 2
vim.opt.shiftwidth = 2
vim.opt.expandtab = false
end,
})
return {}