Set .lua files to 2-space tabs

This commit is contained in:
agryphus 2023-05-23 11:03:53 -04:00
parent 402eddfda2
commit cd3958ca0f
10 changed files with 102 additions and 95 deletions

View file

@ -1,18 +1,18 @@
vim.g.firenvim_config = {
globalSettings = { alt = "all" },
localSettings = {
[".*"] = {
cmdline = "neovim",
content = "text",
priority = 0,
selector = "textarea",
takeover = "never"
}
globalSettings = { alt = "all" },
localSettings = {
[".*"] = {
cmdline = "neovim",
content = "text",
priority = 0,
selector = "textarea",
takeover = "never"
}
}
}
-- Prevents scrolling when cursor is near the bottom of the text area
if vim.g.started_by_firenvim == true then
vim.opt.scrolloff = 0
vim.opt.scrolloff = 0
end