dotfiles/.config/nvim/lua/core/plugins.lua

179 lines
4.4 KiB
Lua
Raw Normal View History

2023-01-20 17:57:58 +00:00
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
if not vim.loop.fs_stat(lazypath) then
vim.fn.system({
2022-10-01 11:46:18 +00:00
"git",
"clone",
2023-01-20 17:57:58 +00:00
"--filter=blob:none",
"https://github.com/folke/lazy.nvim.git",
"--branch=stable", -- latest stable release
lazypath,
2022-10-01 11:46:18 +00:00
})
end
2023-01-20 17:57:58 +00:00
vim.opt.rtp:prepend(lazypath)
vim.g.mapleader = " "
vim.g.maplocalleader = " "
2022-10-01 11:46:18 +00:00
2023-01-21 11:35:30 +00:00
local lazy_opts = {
ui = {
border = "rounded",
},
}
2023-04-12 18:09:30 +00:00
require("lazy").setup({
2023-01-20 17:57:58 +00:00
-- Colorschemes
{
"folke/tokyonight.nvim",
lazy = false,
priority = 1000,
config = function()
require("tokyonight").setup({
style = "moon",
styles = {
sidebars = "normal",
floats = "normal",
},
2023-03-09 19:08:35 +00:00
on_colors = function(colors)
colors.error = "#ff966c"
colors.gitSigns.add = "#c3e88d"
colors.gitSigns.change = "#779be9"
end,
2023-01-20 17:57:58 +00:00
})
2022-10-01 11:46:18 +00:00
end,
},
2023-03-12 14:58:25 +00:00
{
"projekt0n/github-nvim-theme",
lazy = false,
priority = 1000,
2023-05-25 16:54:11 +00:00
version = "v1.0.x",
2023-03-12 14:58:25 +00:00
config = function()
2023-05-25 16:54:11 +00:00
local options = {
darken = {
floats = false,
sidebars = {
enable = false,
list = {},
},
2023-03-12 14:58:25 +00:00
},
2023-05-25 16:54:11 +00:00
}
local specs = {
github_dark_dimmed = {
syntax = {
keyword = "yellow.base",
},
diagnostic = {
error = "#dd6861",
},
},
}
require("github-theme").setup({ options = options, specs = specs })
vim.cmd("colorscheme github_dark_dimmed")
2023-03-12 14:58:25 +00:00
end,
},
2022-10-01 11:46:18 +00:00
-- Plugins
{ "nvim-lua/plenary.nvim", lazy = true },
{ "echasnovski/mini.starter", lazy = "VimEnter", version = "*" },
2023-01-20 17:57:58 +00:00
{ "windwp/nvim-autopairs" },
{ "numToStr/Comment.nvim", version = "v0.*" },
{ "JoosepAlviste/nvim-ts-context-commentstring" },
{ "nvim-tree/nvim-web-devicons", lazy = true },
{ "akinsho/bufferline.nvim", event = "VeryLazy", version = "v3.*" },
2023-01-20 17:57:58 +00:00
{ "moll/vim-bbye" },
{ "nvim-lualine/lualine.nvim", event = "VeryLazy" },
{ "lukas-reineke/indent-blankline.nvim", event = "BufReadPost", version = "v2.*" },
{ "nvim-zh/auto-save.nvim", event = "BufReadPost" },
2023-01-20 17:57:58 +00:00
{ "gelguy/wilder.nvim" },
{ "romgrk/fzy-lua-native" },
{ "mg979/vim-visual-multi", version = "v0.*" },
{ "gnikdroy/projections.nvim" },
{ "nvim-treesitter/nvim-treesitter", event = "BufReadPost" },
{ "ray-x/sad.nvim", cmd = "Sad" },
2023-01-20 17:57:58 +00:00
{
2022-10-01 11:46:18 +00:00
"nvim-neo-tree/neo-tree.nvim",
2023-01-21 11:35:30 +00:00
version = "v2.x",
2023-01-20 17:57:58 +00:00
dependencies = { "MunifTanjim/nui.nvim" },
},
{ "taybart/b64.nvim", event = "VeryLazy" },
2023-02-16 18:48:08 +00:00
{ "echasnovski/mini.align", event = "VeryLazy", version = "*" },
2023-03-11 15:29:00 +00:00
{ "tenxsoydev/karen-yank.nvim", event = "VeryLazy", config = true },
{
"ggandor/leap.nvim",
version = "*",
config = function()
require("leap").add_default_mappings()
end,
},
2023-04-09 16:13:55 +00:00
{
"knubie/vim-kitty-navigator",
version = "*",
build = "cp ./*.py ~/.config/kitty/",
},
2023-05-25 16:54:11 +00:00
{ "robbles/logstash.vim" },
2022-10-01 11:46:18 +00:00
-- cmp plugins
{
"hrsh7th/nvim-cmp",
event = "InsertEnter",
dependencies = {
"hrsh7th/cmp-buffer",
"hrsh7th/cmp-path",
"saadparwaiz1/cmp_luasnip",
"hrsh7th/cmp-nvim-lsp",
},
},
2023-04-22 14:13:28 +00:00
{ "jcdickinson/codeium.nvim" },
2022-10-01 11:46:18 +00:00
2022-10-12 14:02:54 +00:00
-- Snippets
2023-01-20 17:57:58 +00:00
{ "L3MON4D3/LuaSnip", version = "v1.*" },
{ "rafamadriz/friendly-snippets" },
2022-10-01 11:46:18 +00:00
-- LSP
2023-02-15 19:26:06 +00:00
{ "neovim/nvim-lspconfig", event = "BufReadPre" },
2023-01-20 17:57:58 +00:00
{ "williamboman/mason.nvim" },
{ "williamboman/mason-lspconfig.nvim" },
{ "jose-elias-alvarez/null-ls.nvim", event = "BufReadPre" },
{ "RRethy/vim-illuminate", event = "BufReadPost" },
{ "folke/trouble.nvim", cmd = { "TroubleToggle", "Trouble" } },
{ "glepnir/lspsaga.nvim", event = "BufRead" },
2023-01-20 17:57:58 +00:00
{ "arkav/lualine-lsp-progress" },
2023-02-15 19:26:06 +00:00
{ "someone-stole-my-name/yaml-companion.nvim", event = "BufRead" },
2022-10-01 11:46:18 +00:00
-- Telescope
{ "nvim-telescope/telescope.nvim", cmd = "Telescope" },
2023-01-20 17:57:58 +00:00
{ "nvim-telescope/telescope-ui-select.nvim" },
2023-02-15 19:26:06 +00:00
{ "nvim-telescope/telescope-fzf-native.nvim", build = "make" },
2022-10-01 11:46:18 +00:00
-- Git
{ "lewis6991/gitsigns.nvim", event = "BufReadPre", version = "v0.*" },
2023-01-20 17:57:58 +00:00
{ "sindrets/diffview.nvim" },
{ "f-person/git-blame.nvim" },
2022-10-01 11:46:18 +00:00
-- DAP
{ "mfussenegger/nvim-dap", event = "VeryLazy", version = "0.*" },
{ "rcarriga/nvim-dap-ui", event = "VeryLazy", version = "v2.*" },
{ "ravenxrz/DAPInstall.nvim", event = "VeryLazy" },
{ "theHamsta/nvim-dap-virtual-text", event = "VeryLazy" },
2022-10-01 11:46:18 +00:00
2022-10-12 14:02:54 +00:00
-- Go
2023-01-20 17:57:58 +00:00
{
2023-04-29 15:09:28 +00:00
"ray-x/go.nvim",
dependencies = {
"ray-x/guihua.lua",
build = "cd lua/fzy && make",
},
event = { "CmdlineEnter" },
ft = { "go", "gomod" },
2023-01-20 17:57:58 +00:00
},
2022-10-01 11:46:18 +00:00
2022-10-12 14:02:54 +00:00
-- Markdown
2023-01-20 17:57:58 +00:00
{ "mzlogin/vim-markdown-toc" },
{
2022-10-01 11:46:18 +00:00
"iamcco/markdown-preview.nvim",
2023-01-20 17:57:58 +00:00
build = "cd app && npm install",
init = function()
2022-10-01 11:46:18 +00:00
vim.g.mkdp_filetypes = { "markdown" }
end,
ft = { "markdown" },
2023-01-20 17:57:58 +00:00
},
2023-01-21 11:35:30 +00:00
}, lazy_opts)