|
|
|
@ -1,6 +1,7 @@
|
|
|
|
|
-- [[ Install `lazy.nvim` plugin manager ]]
|
|
|
|
|
-- See `:help lazy.nvim.txt` or https://github.com/folke/lazy.nvim for more info
|
|
|
|
|
local lazypath = vim.fn.stdpath 'data' .. '/lazy/lazy.nvim'
|
|
|
|
|
print(lazypath)
|
|
|
|
|
if not vim.loop.fs_stat(lazypath) then
|
|
|
|
|
local lazyrepo = 'https://github.com/folke/lazy.nvim.git'
|
|
|
|
|
vim.fn.system { 'git', 'clone', '--filter=blob:none', '--branch=stable', lazyrepo, lazypath }
|
|
|
|
@ -12,4 +13,23 @@ require('lazy').setup {
|
|
|
|
|
change_detection = {
|
|
|
|
|
notify = false,
|
|
|
|
|
},
|
|
|
|
|
ui = {
|
|
|
|
|
-- If you are using a Nerd Font: set icons to an empty table which will use the
|
|
|
|
|
-- default lazy.nvim defined Nerd Font icons, otherwise define a unicode icons table
|
|
|
|
|
icons = vim.g.have_nerd_font and {} or {
|
|
|
|
|
cmd = '⌘',
|
|
|
|
|
config = '🛠',
|
|
|
|
|
event = '📅',
|
|
|
|
|
ft = '📂',
|
|
|
|
|
init = '⚙',
|
|
|
|
|
keys = '🗝',
|
|
|
|
|
plugin = '🔌',
|
|
|
|
|
runtime = '💻',
|
|
|
|
|
require = '🌙',
|
|
|
|
|
source = '📄',
|
|
|
|
|
start = '🚀',
|
|
|
|
|
task = '📌',
|
|
|
|
|
lazy = '💤 ',
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|