1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
-- This file can be loaded by calling `lua require('plugins')` from your init.vim
-- Only required if you have packer configured as `opt`
vim.cmd [[packadd packer.nvim]]
return require('packer').startup(function(use)
use 'wbthomason/packer.nvim'
-- # learning
use 'ThePrimeagen/vim-be-good'
-- use 'vuciv/golf' --vim daily task
use 'm4xshen/hardtime.nvim'
-- # niceties
use 'rcarriga/nvim-notify'
use { "rose-pine/neovim", as = "rose-pine" }
use { "folke/tokyonight.nvim", as = "tokyonight"}
use { "catppuccin/nvim", as = "catppuccin" }
use '3rd/image.nvim'
use({ "NStefan002/screenkey.nvim", tag = "*" })
use("catgoose/nvim-colorizer.lua")
use 'tpope/vim-fugitive'
-- # main dev requirements
use('nvim-treesitter/nvim-treesitter', {run = ':TSUpdate'})
use 'ThePrimeagen/harpoon'
use("mbbill/undotree")
use {
'nvim-telescope/telescope.nvim', tag = '0.1.8', -- 0.1.5
-- or , branch = '0.1.x',
requires = { {'nvim-lua/plenary.nvim'} }
}
use {
'neovim/nvim-lspconfig',
requires = {
'williamboman/mason.nvim',
'williamboman/mason-lspconfig.nvim',
"jay-babu/mason-nvim-dap.nvim",
-- Autocompletion
'hrsh7th/cmp-nvim-lsp',
'hrsh7th/cmp-buffer',
'hrsh7th/cmp-path',
'hrsh7th/cmp-cmdline',
'hrsh7th/nvim-cmp',
--snippets
'L3MON4D3/LuaSnip',
'saadparwaiz1/cmp_luasnip',
'rafamadriz/friendly-snippets',
}
}
use 'folke/trouble.nvim'
-- to dap, or not to dap? tis the question
-- ill trya dap
use { "rcarriga/nvim-dap-ui", requires = {"mfussenegger/nvim-dap", "nvim-neotest/nvim-nio"} }
use({ "iamcco/markdown-preview.nvim", run = "cd app && npm install", setup = function() vim.g.mkdp_filetypes = { "markdown" } end, ft = { "markdown" }, })
use({
'tigion/nvim-asciidoc-preview',
run = 'cd server && npm install --omit=dev',
})
end)
|