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
|
--
-- plugins for neovim
--
local fn = vim.fn
local cmd = vim.cmd
local packer_path = fn.stdpath("data") .. "/site/pack/packer/start/packer.nvim"
if fn.empty(fn.glob(packer_path)) > 0 then
Packer_bootstrap = fn.system({
"git",
"clone",
"--depth",
"1",
"https://github.com/wbthomason/packer.nvim",
packer_path,
})
cmd([[packadd packer.nvim]])
end
require("packer").startup(function(use)
use("wbthomason/packer.nvim")
use({
"nvim-treesitter/nvim-treesitter",
run = function()
require("nvim-treesitter.install").update({ with_sync = true })
end,
})
use({
"goolord/alpha-nvim",
requires = { "kyazdani42/nvim-web-devicons" },
})
use("kyazdani42/nvim-tree.lua")
use("williamboman/mason.nvim")
use("williamboman/mason-lspconfig")
use("neovim/nvim-lspconfig")
use({ "ms-jpq/coq_nvim", run = "python3 -m coq deps" })
use("ms-jpq/coq.artifacts")
use("ms-jpq/coq.thirdparty")
use({
"jose-elias-alvarez/null-ls.nvim",
requires = { "nvim-lua/plenary.nvim" },
})
use({
"folke/trouble.nvim",
requires = { "kyazdani42/nvim-web-devicons" },
})
use({
"akinsho/bufferline.nvim",
tag = "v2.*",
requires = { "kyazdani42/nvim-web-devicons" },
})
use({
"nvim-telescope/telescope.nvim",
branch = "0.1.x",
requires = { "nvim-lua/plenary.nvim" },
})
use({ "nvim-lualine/lualine.nvim", requires = { "kyazdani42/nvim-web-devicons", opt = true } })
use("arcticicestudio/nord-vim")
use({ "rose-pine/neovim", as = "rose-pine" })
if Packer_bootstrap then
require("packer").sync()
end
end)
require("nvim-treesitter.configs").setup({
auto_install = true,
})
require("lualine").setup({
options = {
theme = "nord",
},
extensions = { "nvim-tree" },
})
|