diff options
| author | Polesznyák Márk <contact@pml68.dev> | 2026-04-04 03:16:27 +0200 |
|---|---|---|
| committer | Polesznyák Márk <contact@pml68.dev> | 2026-04-04 10:12:16 +0200 |
| commit | 8bb513a86e8bea07fdb8cea71d254d46ffc7806b (patch) | |
| tree | 745bd411d173e4da9355b214dc74edde08f42692 /lua/pml68/plugins/lang-specific.lua | |
| parent | feat: enable ui2, add back LspLog command (diff) | |
| download | nvim-8bb513a86e8bea07fdb8cea71d254d46ffc7806b.tar.gz | |
feat!: migrate to vim.pack
Diffstat (limited to '')
| -rw-r--r-- | lua/pml68/plugins/lang-specific.lua | 62 |
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", - }, -} |
