Add modeline to modules

This commit is contained in:
Imbus 2024-07-21 22:14:58 +02:00
parent c2975dd61c
commit 00de1c1420
4 changed files with 8 additions and 0 deletions

View file

@ -61,3 +61,5 @@ vim.api.nvim_create_autocmd('TextYankPost', {
vim.highlight.on_yank() vim.highlight.on_yank()
end, end,
}) })
-- vim: ts=2 sts=2 sw=2 et

View file

@ -6,3 +6,5 @@ if not vim.loop.fs_stat(lazypath) then
vim.fn.system { 'git', 'clone', '--filter=blob:none', '--branch=stable', lazyrepo, lazypath } vim.fn.system { 'git', 'clone', '--filter=blob:none', '--branch=stable', lazyrepo, lazypath }
end ---@diagnostic disable-next-line: undefined-field end ---@diagnostic disable-next-line: undefined-field
vim.opt.rtp:prepend(lazypath) vim.opt.rtp:prepend(lazypath)
-- vim: ts=2 sts=2 sw=2 et

View file

@ -697,3 +697,5 @@ require('lazy').setup({
}, },
}, },
}) })
-- vim: ts=2 sts=2 sw=2 et

View file

@ -58,3 +58,5 @@ vim.opt.cursorline = true
-- Minimal number of screen lines to keep above and below the cursor. -- Minimal number of screen lines to keep above and below the cursor.
vim.opt.scrolloff = 10 vim.opt.scrolloff = 10
-- vim: ts=2 sts=2 sw=2 et