nvim/init.lua
sadan a713d9a7cf
things
configure nvim-tree with binds + opts
use signature from noice only
add A-L/R arows to go back/forward
2025-03-19 18:17:02 -04:00

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