feat(config): nvim
This commit is contained in:
parent
ab93bfa16d
commit
3fa491d7a4
10 changed files with 291 additions and 0 deletions
18
config/nvim/lua/plugin.lua
Normal file
18
config/nvim/lua/plugin.lua
Normal file
|
@ -0,0 +1,18 @@
|
|||
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
|
||||
if not (vim.uv or 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)
|
||||
|
||||
-- This is also a good place to setup other settings (vim.opt)
|
||||
vim.g.mapleader = " "
|
||||
vim.g.maplocalleader = "\\"
|
||||
|
||||
require("lazy").setup("plugins")
|
Loading…
Add table
Add a link
Reference in a new issue