mirror of
https://github.com/harivansh-afk/nix.git
synced 2026-04-15 10:05:17 +00:00
switch neovim to vim.pack away from lazy add sandboxagent package to netty update defaults
56 lines
1.2 KiB
Lua
56 lines
1.2 KiB
Lua
vim.g.mapleader = " "
|
|
vim.g.maplocalleader = ","
|
|
|
|
local home = os.getenv "HOME" or ""
|
|
local local_bin = home .. "/.local/bin"
|
|
if not (os.getenv "PATH" or ""):find(local_bin, 1, true) then
|
|
local new_path = local_bin .. ":" .. (os.getenv "PATH" or "")
|
|
vim.env.PATH = new_path
|
|
vim.uv.os_setenv("PATH", new_path)
|
|
end
|
|
|
|
function _G.map(mode, lhs, rhs, opts)
|
|
vim.keymap.set(mode, lhs, rhs, vim.tbl_extend("keep", opts or {}, { silent = true }))
|
|
end
|
|
|
|
function _G.bmap(mode, lhs, rhs, opts) _G.map(mode, lhs, rhs, vim.tbl_extend("force", opts or {}, { buffer = 0 })) end
|
|
|
|
local disabled_plugins = {
|
|
"2html_plugin",
|
|
"bugreport",
|
|
"getscript",
|
|
"getscriptPlugin",
|
|
"gzip",
|
|
"logipat",
|
|
"matchit",
|
|
"netrw",
|
|
"netrwFileHandlers",
|
|
"netrwPlugin",
|
|
"netrwSettings",
|
|
"optwin",
|
|
"rplugin",
|
|
"rrhelper",
|
|
"synmenu",
|
|
"tar",
|
|
"tarPlugin",
|
|
"tohtml",
|
|
"tutor",
|
|
"vimball",
|
|
"vimballPlugin",
|
|
"zip",
|
|
"zipPlugin",
|
|
}
|
|
|
|
for _, plugin in ipairs(disabled_plugins) do
|
|
vim.g["loaded_" .. plugin] = 1
|
|
end
|
|
|
|
vim.g.lz_n = {
|
|
load = function(name) vim.cmd.packadd(name:match "[^/]+$" or name) end,
|
|
}
|
|
|
|
vim.pack.add {
|
|
"https://github.com/lumen-oss/lz.n",
|
|
}
|
|
|
|
require("lz.n").load "plugins"
|