Switched to lazy vim as packer stopped working.
Will need to clear the .local/shared/nvim/site directory to stop using the packer packages. I guess I made a build and run? that's neat.
This commit is contained in:
@@ -1,6 +1,25 @@
|
||||
-- Only required if you have packer configured as `opt`
|
||||
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)
|
||||
require("lazy").setup({
|
||||
"morhetz/gruvbox",
|
||||
"neovim/nvim-lspconfig",
|
||||
{ "nvim-telescope/telescope.nvim", dependencies = {"nvim-lua/plenary.nvim"} },
|
||||
"windwp/nvim-autopairs",
|
||||
"sheerun/vim-polyglot",
|
||||
"habamax/vim-godot",
|
||||
})
|
||||
require('statusline')
|
||||
require('packer_init')
|
||||
--require('packer_init')
|
||||
require('keybindings')
|
||||
--vim.opt.guicursor = " "
|
||||
|
||||
|
||||
Reference in New Issue
Block a user