fully on lazy! cleaned up some plugins
This commit is contained in:
@ -5,70 +5,28 @@ return {
|
||||
-- They should be pulled first!
|
||||
-----------------------------------------------------------------
|
||||
|
||||
-- Easy Way to install Language Servers
|
||||
{ 'williamboman/mason.nvim',
|
||||
config = function()
|
||||
require("mason").setup()
|
||||
end
|
||||
},
|
||||
'williamboman/mason-lspconfig.nvim',
|
||||
'neovim/nvim-lspconfig',
|
||||
|
||||
-- Manage all your Keymaps!
|
||||
{
|
||||
"lazytanuki/nvim-mapper",
|
||||
config = function() require("nvim-mapper").setup{} end,
|
||||
before = "telescope.nvim"
|
||||
},
|
||||
},
|
||||
|
||||
-- Neovim Autocomplete with LSP
|
||||
{
|
||||
'hrsh7th/nvim-cmp',
|
||||
dependencies = {
|
||||
'neovim/nvim-lspconfig',
|
||||
'L3MON4D3/LuaSnip',
|
||||
'hrsh7th/cmp-nvim-lsp',
|
||||
'hrsh7th/cmp-path',
|
||||
'hrsh7th/cmp-buffer',
|
||||
'hrsh7th/cmp-cmdline',
|
||||
'hrsh7th/nvim-cmp',
|
||||
'saadparwaiz1/cmp_luasnip',
|
||||
'hrsh7th/cmp-nvim-lsp-signature-help',
|
||||
'f3fora/cmp-spell',
|
||||
}
|
||||
},
|
||||
{
|
||||
'L3MON4D3/LuaSnip', tag = "v1.1.0",
|
||||
wants = { "friendly-snippets", "vim-snippets" },
|
||||
},
|
||||
|
||||
-- Treesitter interface
|
||||
{
|
||||
'nvim-treesitter/nvim-treesitter',
|
||||
build = function() require('nvim-treesitter.install').update({ with_sync = true }) end,
|
||||
},
|
||||
|
||||
-- Null-LS
|
||||
{
|
||||
"jose-elias-alvarez/null-ls.nvim",
|
||||
config = function()
|
||||
require("null-ls").setup({
|
||||
debug = true,
|
||||
})
|
||||
end,
|
||||
dependencies = { "nvim-lua/plenary.nvim" },
|
||||
},
|
||||
------------------------------------------------------------
|
||||
-- General Functionality
|
||||
------------------------------------------------------------
|
||||
-- Change Color of virtual column bar
|
||||
-- 'lukas-reineke/virt-column.nvim'
|
||||
|
||||
'kdheepak/lazygit.nvim',
|
||||
-- Tmux Navigation
|
||||
{
|
||||
"aserowy/tmux.nvim",
|
||||
config = function() require("tmux").setup() end
|
||||
},
|
||||
},
|
||||
-- Find & Search LSP Tags
|
||||
'liuchengxu/vista.vim',
|
||||
|
||||
@ -84,7 +42,7 @@ return {
|
||||
-- Trouble Shows Errors with Files.
|
||||
{
|
||||
"folke/trouble.nvim",
|
||||
dependencies = "kyazdani42/nvim-web-devicons",
|
||||
dependencies = { 'kyazdani42/nvim-web-devicons' },
|
||||
config = function()
|
||||
require("trouble").setup {
|
||||
}
|
||||
@ -156,7 +114,7 @@ return {
|
||||
wrap = true
|
||||
})
|
||||
end
|
||||
},
|
||||
},
|
||||
|
||||
{ "iamcco/markdown-preview.nvim", build = "cd app && npm install", setup = function() vim.g.mkdp_filetypes = {
|
||||
"markdown" } end, ft = { "markdown" }, },
|
||||
@ -164,8 +122,8 @@ return {
|
||||
-- Prettier Plugin for Neovim specifically
|
||||
'MunifTanjim/prettier.nvim',
|
||||
|
||||
-- DAP (Debug adaptor Protocol)
|
||||
'mfussenegger/nvim-dap',
|
||||
-- DAP (Debug adaptor Protocol)
|
||||
'mfussenegger/nvim-dap',
|
||||
|
||||
{
|
||||
'mfussenegger/nvim-dap-python',
|
||||
@ -174,7 +132,7 @@ return {
|
||||
'~/.virtualenvs/debugpy/bin/python'
|
||||
)
|
||||
end
|
||||
},
|
||||
},
|
||||
-- Sidebar
|
||||
{
|
||||
'sidebar-nvim/sidebar.nvim',
|
||||
@ -199,13 +157,9 @@ return {
|
||||
-- Text, Icons, Symbols
|
||||
----------------------------------------------------------
|
||||
'lukas-reineke/indent-blankline.nvim',
|
||||
|
||||
'simrat39/symbols-outline.nvim',
|
||||
|
||||
-- 'nvim-tree/nvim-web-devicons',
|
||||
|
||||
'folke/lsp-colors.nvim',
|
||||
|
||||
'karb94/neoscroll.nvim',
|
||||
|
||||
-- Allow Popups for Telescope etc
|
||||
@ -243,15 +197,13 @@ return {
|
||||
default = { "Identifier", "#7C3AED" },
|
||||
test = { "Identifier", "#FF00FF" }
|
||||
},
|
||||
}
|
||||
}
|
||||
end
|
||||
},
|
||||
-- The all famous telescope
|
||||
{
|
||||
"nvim-telescope/telescope-file-browser.nvim"
|
||||
},
|
||||
-- Various telescopes
|
||||
'nvim-telescope/telescope-file-browser.nvim',
|
||||
|
||||
{
|
||||
{
|
||||
'nvim-telescope/telescope-fzf-native.nvim',
|
||||
build = 'make'
|
||||
},
|
||||
@ -263,8 +215,8 @@ return {
|
||||
'gbprod/nord.nvim',
|
||||
'Mofiqul/dracula.nvim',
|
||||
'lunarvim/colorschemes',
|
||||
{ 'rose-pine/neovim', as = 'rose-pine' },
|
||||
{ "catppuccin/nvim", as = "catppuccin" },
|
||||
'rose-pine/neovim',
|
||||
'catppuccin/nvim',
|
||||
{
|
||||
"folke/tokyonight.nvim",
|
||||
lazy = false, -- make sure we load this during startup if it is your main colorscheme
|
||||
@ -278,11 +230,10 @@ return {
|
||||
'feline-nvim/feline.nvim',
|
||||
dependencies = { 'kyazdani42/nvim-web-devicons' },
|
||||
},
|
||||
{"ellisonleao/glow.nvim"},
|
||||
'ellisonleao/glow.nvim',
|
||||
-- Plugin that causes your code to crumble >:)
|
||||
'eandrju/cellular-automaton.nvim',
|
||||
-- 'eandrju/cellular-automaton.nvim',
|
||||
|
||||
-- Wakatime Tracking
|
||||
'wakatime/vim-wakatime'
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user