Skip to content

A dark colorscheme for Vim/Neovim based on Ghostty's Glacier theme.

Notifications You must be signed in to change notification settings

Soroushsrd/glacier.vim

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 

Repository files navigation

Glacier.vim

A dark colorscheme for Vim/Neovim based on Ghostty's Glacier theme. This elegant, cool-toned theme provides comfortable contrast and carefully selected colors optimized for code readability.

Glacier Theme Preview

Features

  • Dark, cool-toned color palette inspired by Ghostty's Glacier
  • Carefully crafted syntax highlighting for enhanced code readability
  • Support for LSP diagnostics highlighting
  • Git diff and Git gutter integration
  • Telescope and file tree integration
  • True color terminal support
  • Works in both Vim and Neovim

Requirements

  • Vim >= 8.0 or Neovim >= 0.10.0
  • Terminal with true color support (termguicolors)

Installation

Using a Plugin Manager

Vim-Plug

Plug 'soroushsrd/glacier.vim'

Packer (Neovim)

use 'soroushsrd/glacier.vim'

Lazy.nvim (Neovim)

{
  'soroushsrd/glacier.vim',
  lazy = false,
  priority = 1000,
}

Manual Installation

Vim

mkdir -p ~/.vim/colors
cp glacier.vim ~/.vim/colors/

Neovim

mkdir -p ~/.config/nvim/colors
cp glacier.vim ~/.config/nvim/colors/

Usage

Vim (in .vimrc)

set termguicolors
colorscheme glacier

Neovim (in init.vim)

set termguicolors
colorscheme glacier

Neovim with Lua (in init.lua)

vim.opt.termguicolors = true
vim.cmd('colorscheme glacier')
-- Or in newer Neovim versions:
-- vim.cmd.colorscheme('glacier')

Recommended Plugin Integrations

Glacier.vim works well with these plugins:

Customization

You can customize certain aspects of the theme by adding configuration to your Vim/Neovim setup before loading the colorscheme.

Screenshots

C Example C code highlighting

Rust Example Rust syntax highlighting

UI Elements Dashboard and split windows

License

MIT

Credits

About

A dark colorscheme for Vim/Neovim based on Ghostty's Glacier theme.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors