Home

Awesome

Rasmus

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

Features

Plugin Support

Requirements

Installation

Install the theme with your preferred package manager:

vim-plug

Plug 'kvrohit/rasmus.nvim'

packer

use 'kvrohit/rasmus.nvim'

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

OptionDefaultDescription
rasmus_italic_commentstrueMake comments italic
rasmus_italic_keywordsfalseMake keywords italic
rasmus_italic_booleansfalseMake booleans italic
rasmus_italic_functionsfalseMake functions italic
rasmus_italic_variablesfalseMake variables italic
rasmus_bold_commentsfalseMake comments bold
rasmus_bold_keywordsfalseMake keywords bold
rasmus_bold_booleansfalseMake booleans bold
rasmus_bold_functionsfalseMake functions bold
rasmus_bold_variablesfalseMake variables bold
rasmus_transparentfalseDisable background color
rasmus_variantdarkColorscheme variant
-- Example config in lua

-- Configure the appearance
vim.g.rasmus_italic_functions = true
vim.g.rasmus_bold_functions = 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:rasmus_italic_functions = 1
let g:rasmus_bold_functions = 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

Credits