kvrohit
rasmus.nvim
Lua

A color scheme for Neovim

Last updated Jun 12, 2026
216
Stars
17
Forks
5
Issues
0
Stars/day
Attention Score
29
Language breakdown
Lua 99.8%
Vim Script 0.2%
โ–ธ Files click to expand
README

Rasmus

A color scheme for Neovim written in Lua ported from rsms/sublime-theme theme.

Features

  • Supports the latest Neovim 0.5 features like TreeSitter and LSP
  • Terminal colors inside Neovim
  • Dark and monochrome variants

Plugin Support

Requirements

  • Neovim >= 0.5.0

Installation

Install the theme with your preferred package manager:

vim-plug

Plug 'kvrohit/rasmus.nvim'

packer

use 'kvrohit/rasmus.nvim'

lazy.nvim

{
  "kvrohit/rasmus.nvim",
  priority = 1000,
  config = function()
    vim.cmd([[colorscheme rasmus]])
  end,
}

Usage

Enable the colorscheme:

-- Lua
vim.cmd [[colorscheme rasmus]]
" Vim Script
colorscheme rasmus

Configuration

Configuration needs to be set BEFORE loading the color scheme with colorscheme rasmus

| Option | Default | Description | | ----------------------- | ------- | ------------------------ | | rasmusitaliccomments | true | Make comments italic | | rasmusitalickeywords | false | Make keywords italic | | rasmusitalicbooleans | false | Make booleans italic | | rasmusitalicfunctions | false | Make functions italic | | rasmusitalicvariables | false | Make variables italic | | rasmusboldcomments | false | Make comments bold | | rasmusboldkeywords | false | Make keywords bold | | rasmusboldbooleans | false | Make booleans bold | | rasmusboldfunctions | false | Make functions bold | | rasmusboldvariables | false | Make variables bold | | rasmus_transparent | false | Disable background color | | rasmus_variant | dark | Colorscheme variant |

-- Example config in lua

-- Configure the appearance vim.g.rasmusitalicfunctions = true vim.g.rasmusboldfunctions = true

-- Set the colorscheme variant to monochrome vim.g.rasmus_variant = "monochrome"

-- Load the colorscheme vim.cmd [[colorscheme rasmus]]

" Example config in vim script

" Configure the appearance let g:rasmusitalicfunctions = 1 let g:rasmusboldfunctions = 1

" Set the colorscheme variant to monochrome let g:rasmus_variant = "monochrome"

" Load the colorscheme colorscheme rasmus

Preview

Terminal

Screenshot 2022-03-28 at 2 25 58 PM

Markdown

Screenshot 2022-03-28 at 2 08 06 PM

Rust

Screenshot 2022-03-28 at 2 20 33 PM

HTML

Screenshot 2022-03-28 at 2 23 42 PM

JavaScript

Screenshot 2022-03-28 at 2 23 15 PM

JSX

Screenshot 2022-03-28 at 2 21 08 PM

Lua

Screenshot 2022-03-28 at 2 12 40 PM

Extras

  • alacritty color theme: extras/alacritty/rasmus.yaml
  • kitty color theme: extras/kitty/rasmus.conf
  • iterm color theme: extras/iterm/rasmus.itermcolors

Credits

๐Ÿ”— More in this category

ยฉ 2026 GitRepoTrend ยท kvrohit/rasmus.nvim ยท Updated daily from GitHub