aboutsummaryrefslogtreecommitdiff
path: root/lua/pml68/plugins/lang-specific.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua/pml68/plugins/lang-specific.lua')
-rw-r--r--lua/pml68/plugins/lang-specific.lua62
1 files changed, 0 insertions, 62 deletions
diff --git a/lua/pml68/plugins/lang-specific.lua b/lua/pml68/plugins/lang-specific.lua
deleted file mode 100644
index b1eff88..0000000
--- a/lua/pml68/plugins/lang-specific.lua
+++ /dev/null
@@ -1,62 +0,0 @@
-return {
- -- JSON
- {
- "b0o/schemastore.nvim",
- lazy = false,
- },
- -- Java
- {
- "mfussenegger/nvim-jdtls"
- },
- -- Go
- {
- "olexsmir/gopher.nvim",
- ft = "go",
- build = ":GoInstallDeps",
- },
- -- Rust
- {
- "rust-lang/rust.vim",
- ft = "rust",
- init = function()
- vim.g.rustfmt_autosave = 1
- end,
- config = function()
- vim.keymap.set("n", "<leader>rts", "<cmd>RustTest<CR>")
- vim.keymap.set("n", "<leader>rta", "<cmd>RustTest!<CR>")
- end
- },
- {
- "saecki/crates.nvim",
- event = { "BufRead Cargo.toml", "BufWrite Cargo.toml" },
- config = function()
- local crates = require("crates")
- crates.setup({
- lsp = {
- enabled = true,
- actions = true,
- completion = true,
- hover = true,
- },
- })
-
- vim.keymap.set("n", "<leader>rcu", function()
- crates.upgrade_all_crates()
- end)
- end
- },
- -- LaTeX
- {
- "lervag/vimtex",
- dependencies = "micangl/cmp-vimtex",
- ft = "tex",
- init = function()
- vim.g.vimtex_view_method = 'mupdf'
- end,
- },
- -- Hare
- {
- url = "git://git.pml68.dev/vim-haredoc",
- ft = "hare",
- },
-}