Skip to content

nvim plugin to import a warp theme into your neovim editor

Notifications You must be signed in to change notification settings

liliwilson/warp-theme-nvim

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 

Repository files navigation

warp-theme-nvim

a neovim plugin to import warp terminal themes to neovim, using warp's yaml theme files.

now your nvim environment and terminal can match 😍

setup

with a local warp theme file

warp allows users to define custom themes! these themes often live in ~/.warp/themes. to use them with this plugin, provide the path to the desired theme as the theme_link.

return {
    'liliwilson/warp-theme-nvim',
    config = function()
        require('warp-theme-nvim').setup({
                theme_link = "/Users/liliwilson/.warp/themes/hack_mit_2024.yaml"
            })
    end
}

with an online warp theme file

warp also ships with a ton of neat default themes! the yaml files for these themes aren't easily accessible from your machine, but they all live in warp's theme repository here. to use them with this plugin, provide the raw github url to the desired theme as the theme_link.

return {
    'liliwilson/warp-theme-nvim',
    config = function()
        require('warp-theme-nvim').setup({
            theme_link = "https://raw.githubusercontent.com/warpdotdev/themes/refs/heads/main/warp_bundled/gruvbox_dark.yaml"
        })
    end
}

pretty examples

hackmit 2024 theme

image image

jellyfish warp theme

image image

cyber wave warp theme

image image

About

nvim plugin to import a warp theme into your neovim editor

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages