- Supports Treesitter & LSP
- Vim terminal colours
Using lazy.nvim:
require("lazy").setup({
"namrabtw/rusty.nvim",
version = false,
lazy = false,
priority = 1000, -- make sure to load this before all the other start plugins
})
Using packer.nvim:
use 'namrabtw/rusty.nvim'
Using vim-plug:
Plug 'namrabtw/rusty.nvim', { 'branch': 'main' }
" In VimL
colorscheme rusty
-- In Lua
vim.cmd([[colorscheme rusty]])
-- Alternatively
require("rusty").load()