all repos

init.lua @ a7f4ec5e51169894238c9f5580e0c9478ae50bf7

my nvim config

init.lua/lua/plugin/init.lua(view raw)

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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
return require("packer").startup(function(use)
  use "wbthomason/packer.nvim"
  use "nvim-lua/plenary.nvim"
  use "LunarVim/onedarker.nvim"
  use "kyazdani42/nvim-web-devicons"
  use "romgrk/barbar.nvim"
  use { "tpope/vim-surround", keys = { "c", "y", "d" } }

  use {
    "numToStr/Comment.nvim",
    config = function()
      require("Comment").setup()
    end,
  }

  -- use {
  --   "folke/trouble.nvim",
  --   cmd = "TroubleToggle",
  --   config = function()
  --     require("trouble").setup {}
  --   end,
  -- }

  use {
    "neovim/nvim-lspconfig",
    requires = { { "williamboman/nvim-lsp-installer", after = "nvim-lspconfig" } },
    config = function()
      require("plugin.configs.lsp.config").setup()
    end,
  }

  use {
    "jose-elias-alvarez/null-ls.nvim",
    after = "nvim-lspconfig",
    config = function()
      require("plugin.configs.lsp.null-ls").setup()
    end,
  }

  use {
    "windwp/nvim-autopairs",
    config = function()
      require("nvim-autopairs").setup {}
    end,
  }

  use {
    "ahmedkhalf/project.nvim",
    config = function()
      require("plugin.configs.project").setup()
    end,
  }

  -- use {
  --   "mfussenegger/nvim-dap",
  --   requires = {
  --     { "Pocco81/DAPInstall.nvim" },
  --     { "theHamsta/nvim-dap-virtual-text", after = "nvim-dap" },
  --     { "jbyuki/one-small-step-for-vimkind", ft = "lua", after = "nvim-dap" },
  --   },
  --   config = function()
  --     require("plugin.configs.dap").setup()
  --   end,
  -- }

  use {
    "lewis6991/gitsigns.nvim",
    config = function()
      require("plugin.configs.gitsigns").setup()
    end,
  }

  use {
    "Famiu/feline.nvim",
    config = function()
      require("plugin.configs.statusline").setup()
    end,
  }

  use {
    "rcarriga/vim-ultest",
    requires = "vim-test/vim-test",
    cmd = { "Ultest", "UltestStop", "UltestClear", "UltestNearest", "UltestOutput" },
    run = ":UpdateRemotePlugins",
    config = function()
      require("plugin.configs.ultest").setup()
    end,
  }

  use {
    "folke/lua-dev.nvim",
    ft = "lua",
    config = function()
      require("lua-dev").setup {}
    end,
  }

  use {
    "ray-x/go.nvim",
    ft = "go",
    config = function()
      require("go").setup { gofmt = "gofumpt" }
    end,
  }

  use {
    "folke/todo-comments.nvim",
    config = function()
      require("todo-comments").setup {}
    end,
  }

  use {
    "hrsh7th/nvim-cmp",
    requires = {
      { "hrsh7th/cmp-nvim-lua", after = "nvim-cmp" },
      { "hrsh7th/cmp-nvim-lsp", after = "nvim-cmp" },
      { "hrsh7th/cmp-buffer", after = "nvim-cmp" },
      { "hrsh7th/cmp-path", after = "nvim-cmp" },
      { "saadparwaiz1/cmp_luasnip", after = "nvim-cmp" },
      { "L3MON4D3/LuaSnip", requires = "rafamadriz/friendly-snippets", after = "nvim-cmp" },
      { "tzachar/cmp-tabnine", run = "./install.sh", after = "nvim-cmp" },
    },
    config = function()
      require("plugin.configs.cmp").setup()
    end,
  }

  use {
    "max397574/better-escape.nvim",
    config = function()
      require("better_escape").setup {
        mapping = { "jk" },
      }
    end,
  }

  use {
    "nvim-telescope/telescope.nvim",
    cmd = "Telescope",
    config = function()
      require("plugin.configs.telescope").setup()
    end,
  }

  use {
    "kyazdani42/nvim-tree.lua",
    cmd = "NvimTreeToggle",
    config = function()
      require("plugin.configs.nvimtree").setup()
    end,
  }

  use {
    "nvim-treesitter/nvim-treesitter",
    branch = "0.5-compat",
    -- requires = {
    --   "Smirnov-O/ts-unit.nvim",
    --   after = "nvim-treesitter",
    --   keys = { "cip", "vip", "yip", "dip" },
    --   config = function()
    --     require("ts-unit").setup { keymaps = true }
    --   end,
    -- },
    config = function()
      require("plugin.configs.treesitter").setup()
    end,
  }

  use {
    "akinsho/toggleterm.nvim",
    keys = "<C-t>",
    config = function()
      require("plugin.configs.terminal").setup()
    end,
  }
end)