nixos/config/nvim/lua/core/plugins.lua

114 lines
3.4 KiB
Lua
Raw Normal View History

2023-08-08 00:48:22 +04:00
-- bootstrap lazy.nvim
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
2023-08-08 00:48:22 +04:00
vim.opt.rtp:prepend(lazypath)
2023-08-08 00:48:22 +04:00
vim.g.mapleader = ' '
2023-08-08 00:48:22 +04:00
local plugins = {
2023-08-08 00:48:22 +04:00
-- whats an ide without a file explorer
"nvim-tree/nvim-tree.lua",
"nvim-tree/nvim-web-devicons",
2023-08-08 22:23:30 +04:00
-- colorscheme
2023-08-11 13:35:10 +04:00
{ "bluz71/vim-moonfly-colors", name = "moonfly", lazy = false, priority = 1000 },
2023-08-08 22:23:30 +04:00
2023-08-08 00:48:22 +04:00
-- default bar only looks good on linux
"nvim-lualine/lualine.nvim",
2023-08-08 00:48:22 +04:00
-- syntax highlighting apparently
"nvim-treesitter/nvim-treesitter",
"windwp/nvim-ts-autotag",
2023-08-08 00:48:22 +04:00
-- like fzf but goofier
{
"nvim-telescope/telescope.nvim",
version = "0.1.1",
dependencies = { { "nvim-lua/plenary.nvim" } },
},
-- lsp stuff
{
"williamboman/mason.nvim",
"williamboman/mason-lspconfig.nvim",
"neovim/nvim-lspconfig",
},
-- le completion
"hrsh7th/nvim-cmp",
"hrsh7th/cmp-buffer",
"hrsh7th/cmp-path",
"hrsh7th/cmp-nvim-lsp",
"onsails/lspkind.nvim",
2023-08-08 00:48:22 +04:00
-- snippet
"L3MON4D3/LuaSnip",
"saadparwaiz1/cmp_luasnip",
2023-08-08 00:48:22 +04:00
-- auto close to prevent carpal tunnel :
"windwp/nvim-autopairs",
2023-08-08 00:48:22 +04:00
-- git stuff lol
"lewis6991/gitsigns.nvim",
2023-08-08 00:48:22 +04:00
-- linting
"jose-elias-alvarez/null-ls.nvim",
"jayp0521/mason-null-ls.nvim",
2023-08-08 00:48:22 +04:00
-- flex
"andweeb/presence.nvim",
2023-07-29 21:45:44 +04:00
-- color picker
2023-08-08 00:48:22 +04:00
"ziontee113/color-picker.nvim",
2023-08-10 20:12:38 +04:00
-- startup
{
'glepnir/dashboard-nvim',
2023-08-11 14:04:07 +04:00
config = function()
require('dashboard').setup {
2023-08-11 15:17:25 +04:00
theme = 'doom', -- theme is doom and hyper default is hyper
2023-08-11 14:04:07 +04:00
config = {
-- todo https://github.com/nvimdev/dashboard-nvim
header = {
' █████████ █████████ █████ ████ ███████ ',
' ███░░░░░███ ███░░░░░███ ░░███ ███░ ███░░░░░███ ',
'░███ ░░░ ░███ ░███ ░███ ███ ███ ░░███',
'░░█████████ ░███████████ ░███████ ░███ ░███',
' ░░░░░░░░███ ░███░░░░░███ ░███░░███ ░███ ░███',
' ███ ░███ ░███ ░███ ░███ ░░███ ░░███ ███',
'░░█████████ █████ █████ █████ ░░████ ░░░███████░',
'░░░░░░░░░ ░░░░░ ░░░░░ ░░░░░ ░░░░ ░░░░░░░ ',
}, --your header
2023-08-11 15:20:31 +04:00
center = {
{
icon = '',
icon_hl = 'Title',
desc = 'Find File ',
desc_hl = 'String',
2023-08-11 15:24:13 +04:00
keymap = 'SPC SPC',
2023-08-11 15:20:31 +04:00
key_hl = 'Number',
action = 'lua print(2)'
2023-08-11 14:04:07 +04:00
},
2023-08-11 15:20:31 +04:00
}
2023-08-11 14:04:07 +04:00
}
}
end,
2023-08-10 20:12:38 +04:00
event = 'VimEnter',
dependencies = { { 'nvim-tree/nvim-web-devicons' } }
2023-08-11 00:18:17 +04:00
},
-- floating terminal, useful to mimic/be better than vscode
'voldikss/vim-floaterm',
2023-08-08 00:48:22 +04:00
}
2023-08-08 00:48:22 +04:00
require("lazy").setup(plugins, {})