nvim: lsp/ftplugin/rust: Remove crate graph

This commit is contained in:
Sanchayan Maity 2022-05-06 11:25:09 +05:30
parent ef00957fae
commit 363ba685aa
2 changed files with 0 additions and 6 deletions

View File

@ -12,7 +12,6 @@ nnoremap <buffer> <Leader>rh :RustHoverActions<CR>
nnoremap <buffer> <Leader>rd :RustMoveItemDown<CR>
nnoremap <buffer> <Leader>ru :RustMoveItemUp<CR>
nnoremap <buffer> <Leader>rs :RustStartStandaloneServerForBuffer<CR>
nnoremap <buffer> <Leader>rg :RustViewCrateGraph<CR>
nnoremap <buffer> cbb :Dispatch! cargo build<CR>
nnoremap <buffer> cbc :Dispatch! cargo clean<CR>

View File

@ -179,11 +179,6 @@ local rust_tool_opts = {
hover_actions = {
auto_focus = true
},
crate_graph = {
backend = "svg",
output = "crates_graph.svg",
full = false,
}
},
server = {
on_init = on_init,