Add custom plugins.
This commit is contained in:
parent
7a10a75dc3
commit
7d1b1005f0
5 changed files with 72 additions and 0 deletions
11
lua/plugins/perl.lua
Normal file
11
lua/plugins/perl.lua
Normal 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 {}
|
Loading…
Add table
Add a link
Reference in a new issue