-
Notifications
You must be signed in to change notification settings - Fork 0
/
init.lua
103 lines (100 loc) · 2.74 KB
/
init.lua
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
require('core')
require('keybinds')
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
vim.opt.rtp:prepend(lazypath)
require("lazy").setup({
{
'nvim-telescope/telescope.nvim', tag = '0.1.4',
dependencies = { 'nvim-lua/plenary.nvim' }
},
{
'nvim-treesitter/nvim-treesitter',
build = ":TSUpdate"
},
{
'aserowy/tmux.nvim',
config = function() return require("tmux").setup() end
},
{ 'ludovicchabant/vim-gutentags' },
{ 'tpope/vim-commentary' },
{ 'tpope/vim-surround' },
{ 'easymotion/vim-easymotion' },
{
'kevinhwang91/nvim-ufo',
dependencies = { 'kevinhwang91/promise-async' }
},
{ 'akinsho/git-conflict.nvim', version = "", config = true },
{
'lewis6991/gitsigns.nvim',
config = function() return require('gitsigns').setup() end
},
{ 'nvim-neo-tree/neo-tree.nvim' },
{ 'MunifTanjim/nui.nvim' }, -- what do i need this for?
{ 'tpope/vim-fugitive' },
{ 'rmagatti/auto-session', },
{
'nvim-telescope/telescope-fzf-native.nvim',
build = 'make'
},
{ 'stevearc/aerial.nvim' },
{ 'ThePrimeagen/harpoon' },
{
"folke/trouble.nvim",
dependencies = { "nvim-tree/nvim-web-devicons" },
},
{ 'neovim/nvim-lspconfig' },
{ 'whonore/coqtail' }, -- For Coq
{
'williamboman/mason.nvim',
build = ":MasonUpdate" -- :MasonUpdate updates registry contents
},
{ 'williamboman/mason-lspconfig.nvim' },
{ 'mfussenegger/nvim-dap' },
{ 'rcarriga/nvim-dap-ui' },
{ 'hrsh7th/cmp-nvim-lsp' },
{ 'hrsh7th/cmp-buffer' },
{ 'hrsh7th/cmp-path' },
{ 'hrsh7th/nvim-cmp' },
{ 'hrsh7th/cmp-vsnip' },
{ 'hrsh7th/vim-vsnip' },
{ 'rafamadriz/friendly-snippets' },
{ 'github/copilot.vim' },
{ 'sbdchd/neoformat' },
-- ###
{ 'nvim-neotest/neotest' },
{ 'olimorris/neotest-rspec' },
{ 'tpope/vim-rails' },
{ 'vim-ruby/vim-ruby' },
-- ###
{
'simrat39/rust-tools.nvim',
dependencies = { 'nvim-lua/plenary.nvim' }
},
{ 'folke/todo-comments.nvim' },
{ 'goolord/alpha-nvim' },
{ 'akinsho/bufferline.nvim' },
{ 'nvim-lualine/lualine.nvim' },
{
'lukas-reineke/indent-blankline.nvim',
main = 'ibl',
opts = {},
config = function() return require('ibl').setup() end
},
{
'catppuccin/nvim',
name = "catppuccin",
priority = 1000
}
})
require('plugins')
vim.cmd.colorscheme "catppuccin-macchiato"