You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
396 B
Lua
18 lines
396 B
Lua
3 weeks ago
|
-- See README.md for bootstrapping
|
||
|
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
|
||
|
vim.opt.rtp:prepend(lazypath)
|
||
|
|
||
|
require("lazy").setup({
|
||
|
spec = {
|
||
|
{ import = "plugins" },
|
||
|
},
|
||
|
pkg = { enabled = false },
|
||
|
rocks = { enabled = false },
|
||
|
custom_keys = {
|
||
|
-- Disable default keybindings
|
||
|
["<localleader>l"] = false,
|
||
|
["<localleader>i"] = false,
|
||
|
["<localleader>t"] = false,
|
||
|
},
|
||
|
})
|