1

Update generated neovim config

This commit is contained in:
2024-08-15 14:28:54 +02:00
parent 07409c223d
commit 25cfcf2941
3809 changed files with 351157 additions and 0 deletions

View File

@ -0,0 +1,40 @@
local git_ref = '5.2.0'
local modrev = '5.2.0'
local specrev = '1'
local repo_url = 'https://github.com/mrcjkb/rustaceanvim'
rockspec_format = '3.0'
package = 'rustaceanvim'
version = modrev ..'-'.. specrev
description = {
summary = '🦀 Supercharge your Rust experience in Neovim! A heavily modified fork of rust-tools.nvim',
detailed = [[
This plugin automatically configures the rust-analyzer builtin LSP client
and integrates with other Rust tools. See the README's #features section
for more info.]],
labels = { 'dap', 'debug-adapter-protocol', 'language-server-protocol', 'lsp', 'neovim', 'nvim', 'plugin', 'rust', 'rust-analyzer', 'rust-lang', 'rust-tools' } ,
homepage = 'https://github.com/mrcjkb/rustaceanvim',
license = 'GPL-2.0'
}
dependencies = { 'lua >= 5.1' }
test_dependencies = { }
source = {
url = repo_url .. '/archive/' .. git_ref .. '.zip',
dir = 'rustaceanvim-' .. '5.2.0',
}
if modrev == 'scm' or modrev == 'dev' then
source = {
url = repo_url:gsub('https', 'git')
}
end
build = {
type = 'builtin',
copy_directories = { 'doc', 'ftplugin' } ,
}