Skip to content

Commit d4f58a6

Browse files
authored
Merge pull request #69 from myuron/refact
lazy
2 parents 2e6b38c + fd91282 commit d4f58a6

5 files changed

Lines changed: 4 additions & 7 deletions

File tree

nvim/lua/plugins/mini.lua

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
return {
22
'nvim-mini/mini.nvim',
3-
lazy = true,
43
version = false,
54
config = function()
65
-- インデントの範囲表示

nvim/lua/plugins/nvim-cmp.lua

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ return {
99
"saadparwaiz1/cmp_luasnip",
1010
"L3MON4D3/LuaSnip",
1111
},
12-
lazy = true,
1312
config = function()
1413
local cmp = require("cmp")
1514
local types = require('cmp.types')

nvim/lua/plugins/nvim-dap.lua

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
return {
22
"mfussenegger/nvim-dap",
3-
lazy = true,
43
event = "VeryLazy",
54
dependencies = {
65
{ "theHamsta/nvim-dap-virtual-text", config = true },

nvim/lua/plugins/nvim-lspconfig.lua

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
return {
22
'neovim/nvim-lspconfig',
3-
lazy = true,
43
event = { "BufReadPre", "BufNewFile" },
54
config = function()
65
vim.lsp.enable({
@@ -12,7 +11,7 @@ return {
1211
"rust_analyzer",
1312
"gopls",
1413
"clangd",
15-
"terraform_lsp"
14+
"terraformls"
1615
})
1716
end,
1817
}

nvim/lua/plugins/nvim-treesitter.lua

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
return {
22
'nvim-treesitter/nvim-treesitter',
3-
lazy = true,
43
build = ":TSUpdate",
54
config = function()
65
require('nvim-treesitter').setup {
@@ -16,7 +15,9 @@ return {
1615
'tsx',
1716
'rust',
1817
'go',
19-
"cpp"
18+
"cpp",
19+
"hcl",
20+
"terraform"
2021
}
2122
end
2223
}

0 commit comments

Comments
 (0)