converted from packer to lazy

This commit is contained in:
Mike G 2024-09-13 21:41:37 -04:00
parent 8c70ffcc1f
commit 7b6c664ceb
14 changed files with 137 additions and 96 deletions

View file

@ -1,6 +1,6 @@
require("user.options") require("config.options")
require("user.keymaps") require("config.keymaps")
require("user.plugins") require("config.lazy")
--vim.cmd[[colorscheme Spacedust]] --vim.cmd[[colorscheme Spacedust]]
--vim.cmd([[colorscheme gruvbox]]) --vim.cmd([[colorscheme gruvbox]])
vim.cmd[[colorscheme nord]] --vim.cmd[[colorscheme nord]]

View file

@ -0,0 +1,35 @@
-- Bootstrap lazy.nvim
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
if not (vim.uv or vim.loop).fs_stat(lazypath) then
local lazyrepo = "https://github.com/folke/lazy.nvim.git"
local out = vim.fn.system({ "git", "clone", "--filter=blob:none", "--branch=stable", lazyrepo, lazypath })
if vim.v.shell_error ~= 0 then
vim.api.nvim_echo({
{ "Failed to clone lazy.nvim:\n", "ErrorMsg" },
{ out, "WarningMsg" },
{ "\nPress any key to exit..." },
}, true, {})
vim.fn.getchar()
os.exit(1)
end
end
vim.opt.rtp:prepend(lazypath)
-- Make sure to setup `mapleader` and `maplocalleader` before
-- loading lazy.nvim so that mappings are correct.
-- This is also a good place to setup other settings (vim.opt)
vim.g.mapleader = " "
vim.g.maplocalleader = "\\"
-- Setup lazy.nvim
require("lazy").setup({
spec = {
-- import your plugins
{ import = "plugins" },
},
-- Configure any other settings here. See the documentation for more details.
-- colorscheme that will be used when installing plugins.
install = { colorscheme = { "habamax" } },
-- automatically check for plugin updates
checker = { enabled = true },
})

View file

@ -0,0 +1,8 @@
return {
'numToStr/Comment.nvim',
-- opts = {}
config = function()
require('Comment').setup()
end,
}

View file

@ -0,0 +1,9 @@
return {
"uga-rosa/ccc.nvim",
opts = {
highlighter = {
auto_enable = true,
lsp = false,
},
}
}

View file

@ -0,0 +1,12 @@
return {
'nvim-lualine/lualine.nvim',
dependencies = { 'nvim-tree/nvim-web-devicons' },
config = function()
require('lualine').setup({
options = {
theme = 'nord',
},
})
end,
}

View file

@ -0,0 +1,25 @@
return {
"neovim/nvim-lspconfig",
dependencies = {
"williamboman/mason.nvim",
},
config = function()
local lspconfig = require("lspconfig")
local mason = require("mason")
mason.setup({
ui = {
icons = {
package_installed = "",
package_pending = "",
package_uninstalled = ""
}
}
})
lspconfig.rust_analyzer.setup({})
end,
}

View file

@ -0,0 +1,7 @@
return {
'windwp/nvim-autopairs',
event = "InsertEnter",
config = true
-- use opts = {} for passing setup options
-- this is equivalent to setup({}) function
}

View file

@ -0,0 +1,11 @@
return {
"nvim-tree/nvim-tree.lua",
version = "*",
lazy = false,
dependencies = {
"nvim-tree/nvim-web-devicons",
},
config = function()
require("nvim-tree").setup {}
end,
}

View file

@ -0,0 +1,5 @@
return {
'nvim-telescope/telescope.nvim', tag = '0.1.8',
dependencies = { 'nvim-lua/plenary.nvim' }
}

View file

@ -0,0 +1,14 @@
return {
-- the colorscheme should be available when starting neovim
{
--"folke/tokyonight.nvim",
"shaunsingh/nord.nvim",
lazy = false, -- make sure we load this during the startup if its your main colorscheme
priority = 1000, -- make sure to load this before all the other start plugins
config = function()
-- load the colorscheme here
--vim.cmd([[colorscheme tokyonight]])
vim.cmd([[colorscheme nord]])
end,
}
}

View file

@ -0,0 +1,7 @@
return {
'nvim-treesitter/nvim-treesitter',
configure = function()
require('nvim-treesitter').setup()
end,
}

View file

@ -1,92 +0,0 @@
local ensure_packer = function()
local fn = vim.fn
local install_path = fn.stdpath('data')..'/site/pack/packer/start/packer.nvim'
if fn.empty(fn.glob(install_path)) > 0 then
fn.system({'git', 'clone', '--depth', '1', 'https://github.com/wbthomason/packer.nvim', install_path})
vim.cmd [[packadd packer.nvim]]
return true
end
return false
end
local packer_bootstrap = ensure_packer()
return require('packer').startup(function(use)
use 'wbthomason/packer.nvim'
use {
'williamboman/mason.nvim',
run = ':MasonUpdate' -- :MasonUpdate updates registry contents
}
-- use 'NvChad/nvim-colorizer.lua'
use 'uga-rosa/ccc.nvim'
use 'windwp/nvim-autopairs'
use 'nvim-tree/nvim-tree.lua'
use 'nvim-tree/nvim-web-devicons'
use 'williamboman/mason-lspconfig.nvim'
use 'neovim/nvim-lspconfig'
use {'akinsho/bufferline.nvim', tag = "*", requires = 'nvim-tree/nvim-web-devicons'}
-- use {'neoclide/coc.nvim', branch = 'release'}
-- Themes
use 'folke/tokyonight.nvim'
use 'shaunsingh/nord.nvim'
use { "ellisonleao/gruvbox.nvim" }
use 'numToStr/Comment.nvim'
use 'mfussenegger/nvim-dap'
use { "rcarriga/nvim-dap-ui", requires = {"mfussenegger/nvim-dap"}}
use 'mfussenegger/nvim-lint'
use 'mhartington/formatter.nvim'
use 'nvim-lua/plenary.nvim'
use { 'nvim-telescope/telescope-fzf-native.nvim', run = 'cmake -S. -Bbuild -DCMAKE_BUILD_TYPE=Release && cmake --build build --config Release && cmake --install build --prefix build' }
use {
'nvim-telescope/telescope.nvim', tag = '0.1.5',
requires = { {'nvim-lua/plenary.nvim'} }
}
use {
'nvim-treesitter/nvim-treesitter',
run = ':TSUpdate',
ensure_installed = 'all'
}
-- Automatically set up your configuration after cloning packer.nvim
-- Put this at the end after all plugins
if packer_bootstrap then
require('packer').sync()
end
-- mason setup
require 'mason'.setup()
-- colorizer setup
-- require 'colorizer'.setup()
-- comment.nvim for toggling line comments
require 'Comment'.setup()
-- ccc.nvim setup
require 'ccc'.setup({
highlighter = {
auto_enable = true,
lsp = false,
},
})
-- autopairs setup
require 'nvim-autopairs'.setup()
-- nvim-tree setup
require 'nvim-tree'.setup()
-- lspconfig
require 'mason-lspconfig'.setup()
require 'lspconfig'.cssls.setup{}
require 'lspconfig'.jsonls.setup{}
-- bufferline setup
require 'bufferline'.setup()
end)