mirror of
https://github.com/sadan4/nvim.git
synced 2025-06-07 12:23:02 -04:00
configure nvim-tree with binds + opts use signature from noice only add A-L/R arows to go back/forward
24 lines
517 B
Lua
24 lines
517 B
Lua
vim.g.mapleader = " "
|
|
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
|
|
if not vim.loop.fs_stat(lazypath) then
|
|
vim.fn.system({
|
|
"git",
|
|
"clone",
|
|
"--filter=blob:none",
|
|
"https://github.com/folke/lazy.nvim.git",
|
|
"--branch=stable", -- latest stable release
|
|
lazypath,
|
|
})
|
|
end
|
|
vim.opt.rtp:prepend(lazypath)
|
|
if vim.g.vscode then
|
|
require"vscodePlugins"
|
|
else
|
|
require"sets"
|
|
require"plugins"
|
|
require"setup"
|
|
require"keymap"
|
|
end
|
|
_G.dbg = function (obj)
|
|
vim.notify(vim.inspect(obj))
|
|
end
|