Skip to content

Latest commit

 

History

History
45 lines (34 loc) · 845 Bytes

File metadata and controls

45 lines (34 loc) · 845 Bytes

Xcode themes for Alacritty, Kitty, Vim, Lualine and tmux

Based on the vim themes from https://github.com/arzg/vim-colors-xcode

Installation

Alacritty

Import or copy the contents into your alacritty.yml file.

# Example by importing
import:
  - ~/.config/alacritty/colors/xcode_dark.yml

Kitty

See https://sw.kovidgoyal.net/kitty/kittens/themes/?highlight=theme#using-your-own-themes

Lualine

Copy the files into ~/.config/nvim/lua/lualine/themes/

-- Example
require("lualine").setup({
  options = {
    theme = "xcode_dark",
  },
})

Tmux

Import or copy the contents into your tmux.conf file.

# Example by sourcing
source-file ~/.config/tmux/themes/xcode_dark.conf

Vim

https://github.com/arzg/vim-colors-xcode

-- Example in nvim
cmd([[colorscheme xcodedark]])