From 00de1c14208ab774577b61b91a98cb4f9d1a993b Mon Sep 17 00:00:00 2001 From: Imbus <> Date: Sun, 21 Jul 2024 22:14:58 +0200 Subject: [PATCH] Add modeline to modules --- lua/keymaps.lua | 2 ++ lua/lazy-bootstrap.lua | 2 ++ lua/lazy-plugins.lua | 2 ++ lua/options.lua | 2 ++ 4 files changed, 8 insertions(+) diff --git a/lua/keymaps.lua b/lua/keymaps.lua index 6923521..64434bb 100644 --- a/lua/keymaps.lua +++ b/lua/keymaps.lua @@ -61,3 +61,5 @@ vim.api.nvim_create_autocmd('TextYankPost', { vim.highlight.on_yank() end, }) + +-- vim: ts=2 sts=2 sw=2 et diff --git a/lua/lazy-bootstrap.lua b/lua/lazy-bootstrap.lua index 0e20833..5ea6ffc 100644 --- a/lua/lazy-bootstrap.lua +++ b/lua/lazy-bootstrap.lua @@ -6,3 +6,5 @@ if not vim.loop.fs_stat(lazypath) then vim.fn.system { 'git', 'clone', '--filter=blob:none', '--branch=stable', lazyrepo, lazypath } end ---@diagnostic disable-next-line: undefined-field vim.opt.rtp:prepend(lazypath) + +-- vim: ts=2 sts=2 sw=2 et diff --git a/lua/lazy-plugins.lua b/lua/lazy-plugins.lua index d1993f3..8fd2869 100644 --- a/lua/lazy-plugins.lua +++ b/lua/lazy-plugins.lua @@ -697,3 +697,5 @@ require('lazy').setup({ }, }, }) + +-- vim: ts=2 sts=2 sw=2 et diff --git a/lua/options.lua b/lua/options.lua index a5031c3..c97d75f 100644 --- a/lua/options.lua +++ b/lua/options.lua @@ -58,3 +58,5 @@ vim.opt.cursorline = true -- Minimal number of screen lines to keep above and below the cursor. vim.opt.scrolloff = 10 + +-- vim: ts=2 sts=2 sw=2 et