config update
This commit is contained in:
28
lua/markaya/lazy.lua
Normal file
28
lua/markaya/lazy.lua
Normal file
@@ -0,0 +1,28 @@
|
||||
-- [[ Install `lazy.nvim` plugin manager ]]
|
||||
local lazypath = vim.fn.stdpath 'data' .. '/lazy/lazy.nvim'
|
||||
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',
|
||||
-- Ovde zaključavamo na v11.17.5 umesto '--branch=stable'
|
||||
'--branch=v11.17.5',
|
||||
lazyrepo,
|
||||
lazypath
|
||||
}
|
||||
end
|
||||
vim.opt.rtp:prepend(lazypath)
|
||||
|
||||
-- Setup lazy.nvim
|
||||
require('lazy').setup('markaya.plugins', {
|
||||
-- Opciono: takođe možete dodati samu lazy.nvim u listu specifikacija
|
||||
-- unutar foldera 'markaya/plugins' kako biste osigurali da je Lazy uvek na toj verziji
|
||||
ui = {
|
||||
icons = vim.g.have_nerd_font and {} or {
|
||||
cmd = '⌘', config = '🛠', event = '📅', ft = '📂', init = '⚙',
|
||||
keys = '🗝', plugin = '🔌', runtime = '💻', require = '🌙',
|
||||
source = '📄', start = '🚀', task = '📌', lazy = '💤 ',
|
||||
},
|
||||
},
|
||||
})
|
||||
Reference in New Issue
Block a user