SkillAgentSearch skills...

Rusty

A simple, attractive Neovim color scheme inspired by Tomorrow Night, designed for comfort during long coding sessions. With a soothing, easy-on-the-eyes palette. Perfect for developers who code for hours, combining both aesthetics and functionality.

Install / Use

/learn @armannikoyan/Rusty
About this skill

Quality Score

0/100

Category

Design

Supported Platforms

Universal

README

rusty.nvim

rusty

Features

  • Supports Treesitter, LSP & Lualine
  • Neovim terminal colours

Installation

Using lazy.nvim:

"armannikoyan/rusty"

Using packer.nvim:

use "namrabtw/rusty.nvim"

Usage

lazy.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,
}

packer.nvim

-- In Lua
vim.cmd([[colorscheme rusty]])

-- Alternatively
require("rusty").setup()

Lualine

theme = require("rusty").lualine
View on GitHub
GitHub Stars54
CategoryDesign
Updated24d ago
Forks4

Languages

Lua

Security Score

85/100

Audited on Mar 5, 2026

No findings