We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8998c90 commit 9d102e6Copy full SHA for 9d102e6
lua/plugins/go.lua
@@ -0,0 +1,10 @@
1
+return {
2
+ "fatih/vim-go",
3
+ ft = "go",
4
+ build = ":GoUpdateBinaries",
5
+ config = function()
6
+ vim.g.go_fmt_command = "goimports"
7
+ vim.g.go_auto_type_info = 1
8
+ vim.g.go_def_mapping_enabled = 0
9
+ end,
10
+}
lua/plugins/rust.lua
@@ -27,4 +27,9 @@ return {
27
})
28
end,
29
},
30
+ {
31
+ "mrcjkb/rustaceanvim",
32
+ version = "^5",
33
+ ft = { "rust" },
34
+ },
35
}
0 commit comments