avoid un-needed lazy loading of packer | improve packer bootstrapping
This commit is contained in:
@@ -1,73 +0,0 @@
|
||||
local autocmd = vim.api.nvim_create_autocmd
|
||||
|
||||
-- Disable statusline in dashboard
|
||||
autocmd("FileType", {
|
||||
pattern = "alpha",
|
||||
callback = function()
|
||||
vim.opt.laststatus = 0
|
||||
end,
|
||||
})
|
||||
|
||||
autocmd("BufUnload", {
|
||||
buffer = 0,
|
||||
callback = function()
|
||||
vim.opt.laststatus = 3
|
||||
end,
|
||||
})
|
||||
|
||||
-- open nvim with a dir while still lazy loading nvimtree
|
||||
-- autocmd("BufEnter", {
|
||||
-- callback = function()
|
||||
-- if vim.api.nvim_buf_get_option(0, "buftype") ~= "terminal" then
|
||||
-- vim.cmd "lcd %:p:h"
|
||||
-- end
|
||||
-- end,
|
||||
-- })
|
||||
|
||||
-- Use relative & absolute line numbers in 'n' & 'i' modes respectively
|
||||
-- autocmd("InsertEnter", {
|
||||
-- callback = function()
|
||||
-- vim.opt.relativenumber = false
|
||||
-- end,
|
||||
-- })
|
||||
-- autocmd("InsertLeave", {
|
||||
-- callback = function()
|
||||
-- vim.opt.relativenumber = true
|
||||
-- end,
|
||||
-- })
|
||||
|
||||
-- Open a file from its last left off position
|
||||
-- autocmd("BufReadPost", {
|
||||
-- callback = function()
|
||||
-- if not vim.fn.expand("%:p"):match ".git" and vim.fn.line "'\"" > 1 and vim.fn.line "'\"" <= vim.fn.line "$" then
|
||||
-- vim.cmd "normal! g'\""
|
||||
-- vim.cmd "normal zz"
|
||||
-- end
|
||||
-- end,
|
||||
-- })
|
||||
|
||||
-- File extension specific tabbing
|
||||
-- autocmd("Filetype", {
|
||||
-- pattern = "python",
|
||||
-- callback = function()
|
||||
-- vim.opt_local.expandtab = true
|
||||
-- vim.opt_local.tabstop = 4
|
||||
-- vim.opt_local.shiftwidth = 4
|
||||
-- vim.opt_local.softtabstop = 4
|
||||
-- end,
|
||||
-- })
|
||||
|
||||
-- Highlight yanked text
|
||||
-- autocmd("TextYankPost", {
|
||||
-- callback = function()
|
||||
-- vim.highlight.on_yank { higroup = "Visual", timeout = 200 }
|
||||
-- end,
|
||||
-- })
|
||||
|
||||
-- Enable spellchecking in markdown, text and gitcommit files
|
||||
-- autocmd("FileType", {
|
||||
-- pattern = { "gitcommit", "markdown", "text" },
|
||||
-- callback = function()
|
||||
-- vim.opt_local.spell = true
|
||||
-- end,
|
||||
-- })
|
||||
Reference in New Issue
Block a user