- Supports Treesitter, LSP & Lualine
- Neovim terminal colours
Using lazy.nvim:
"armannikoyan/rusty"Using packer.nvim:
use "namrabtw/rusty.nvim"return {
"armannikoyan/rusty",
lazy = false,
priority = 1000,
opts = {
transparent = true,
italic_comments = true,
underline_current_line = true,
colors = {
foreground = "#c5c8c6",
background = "#1d1f21",
selection = "#373b41",
line = "#282a2e",
comment = "#969896",
red = "#cc6666",
orange = "#de935f",
yellow = "#f0c674",
green = "#b5bd68",
aqua = "#8abeb7",
blue = "#81a2be",
purple = "#b294bb",
window = "#4d5057",
},
},
config = function(_, opts)
require("rusty").setup(opts)
vim.cmd("colorscheme rusty")
end,
}-- In Lua
vim.cmd([[colorscheme rusty]])
-- Alternatively
require("rusty").setup()theme = require("rusty").lualine