Add install.sh Add .zshrc add: nvim configs add: toggleterm, alpha update update Create README.md major changes major changes add picom updated dot files update shit
34 lines
1,023 B
Lua
34 lines
1,023 B
Lua
require("_plugins_bootstrap")
|
|
require("lazy").setup({
|
|
spec = {
|
|
-- Core
|
|
{ 'nvim-lua/plenary.nvim' },
|
|
|
|
-- Navigation
|
|
{ "kyazdani42/nvim-tree.lua" },
|
|
{ 'nvim-telescope/telescope.nvim' },
|
|
{ "slarwise/telescope-args.nvim" },
|
|
|
|
-- Aesthetics
|
|
{ "lukas-reineke/indent-blankline.nvim" },
|
|
{ "nvim-treesitter/nvim-treesitter", },
|
|
{ "kyazdani42/nvim-web-devicons" },
|
|
{ "nvim-lualine/lualine.nvim" },
|
|
{ "ellisonleao/gruvbox.nvim" },
|
|
{ "lewis6991/gitsigns.nvim" },
|
|
{ "goolord/alpha-nvim" },
|
|
|
|
-- Auto-complete
|
|
{ "hrsh7th/nvim-cmp" },
|
|
{ "hrsh7th/cmp-nvim-lsp" },
|
|
{ "hrsh7th/cmp-nvim-lua" },
|
|
{ "hrsh7th/cmp-buffer" },
|
|
{ "hrsh7th/cmp-path" },
|
|
{ "hrsh7th/cmp-cmdline" },
|
|
{ "saadparwaiz1/cmp_luasnip" },
|
|
{ "windwp/nvim-autopairs" },
|
|
{ "L3MON4D3/LuaSnip" },
|
|
},
|
|
install = { colorscheme = { "gruvbox" } },
|
|
checker = { enabled = true },
|
|
})
|