maxmx03 / caelum

Caelum is a Neo(Vim) colorscheme inspired by the rich colors and intricate designs found in Catholic art during the Renaissance period, "Caelum" is a Latin word meaning "sky" or "heaven."

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

maxmx03/caelum

Caelum 🎨

Caelum is a Vim colorscheme inspired by the rich colors and intricate designs found in Catholic art during the Renaissance period, "Caelum" is a Latin word meaning "sky" or "heaven."

Preview πŸ‘€

Frame 1

Requirements πŸ› οΈ

for vim users

for neovim users

Installation πŸ’»

VimScript

" vim-plug
call plug#begin()
 Plug 'maxmx03/caelum'
call plug#end()
" .vimrc
colorscheme caelum " or caelum-light

Lua

-- init.lua
vim.cmd 'colorscheme caelum' -- or caelum-light
-- packer.nvim
use 'maxmx03/caelum'

Customize πŸ–ŒοΈ

VimScript

" Set transparency
let g:caelum_transparent = 1

" Set italic or bold for function, keyword, comment, and variable
let g:caelum_function_italic = 1
let g:caelum_function_bold = 1

let g:caelum_keyword_italic = 1
let g:caelum_keyword_bold = 1

let g:caelum_comment_italic = 1
let g:caelum_comment_bold = 1

let g:caelum_variable_italic = 1
let g:caelum_variable_bold = 1

Lua

-- Set transparency
vim.g.caelum_transparent = 1

-- Set italic or bold for function, keyword, comment, and variable
vim.g.caelum_function_italic = true
vim.g.caelum_function_bold = true

vim.g.caelum_keyword_italic = true
vim.g.caelum_keyword_bold = true

vim.g.caelum_comment_italic = true
vim.g.caelum_comment_bold = true

vim.g.caelum_variable_italic = true
vim.g.caelum_variable_bold = true

Why use Caelum πŸ€”

When it comes to Vim colorschemes, there are a lot of options out there. However, many of them are outdated or lack support for the latest version of Vim. That's where Caelum comes in.

But Caelum isn't just about looks. We've put a lot of effort into making sure that the syntax highlighting is optimized for readability and ease of use. Whether you're coding late into the night or just spending a lot of time in Vim, Caelum is easy on the eyes and won't leave you feeling fatigued.

Contributing 🀝

Caelum is an open-source project, and we welcome contributions from anyone in the Vim community. Here are some ways you can help:

  • Fork the repository: If you have an idea for a new feature or improvement, feel free to fork the Caelum repository and submit a pull request with your changes.

  • Add new syntax highlighting: We currently support a number of popular programming languages, but there are always more to add. If you notice that a particular language is missing, feel free to add it using the vim-polyglot plugin.

  • Report bugs and issues: If you run into any problems with Caelum, please let us know by opening an issue on the GitHub repository. We'll do our best to address the issue as quickly as possible.

We appreciate all contributions to the project, no matter how big or small. Together, we can make Caelum the best Vim colorscheme out there!

About

Caelum is a Neo(Vim) colorscheme inspired by the rich colors and intricate designs found in Catholic art during the Renaissance period, "Caelum" is a Latin word meaning "sky" or "heaven."

License:MIT License


Languages

Language:Vim Script 92.9%Language:Lua 7.1%