nvim: init: Disable Rust ftplugin mappings

See
920ef1fd71.
This commit is contained in:
Sanchayan Maity 2024-03-19 11:57:50 +05:30
parent 3d2de0cb6b
commit bf4029aea3
Signed by: sanchayanmaity
GPG Key ID: 6F6A0609C12038F3
1 changed files with 3 additions and 0 deletions

View File

@ -103,6 +103,9 @@ vim.g.tmux_navigator_no_mappings = 1
-- Write the current buffer, but only if changed before navigating from Vim to tmux pane
vim.g.tmux_navigator_save_on_switch = 1
-- Disable ]]/[[ style bindings
vim.g.no_rust_maps = 1
-- We do this to prevent the loading of the system fzf.vim plugin. This is
-- present at least on Arch/Manjaro
vim.cmd.set{ args = { 'rtp-=/usr/share/vim/vimfiles' } }