The port of the Flamerial theme for vim
/neovim
.
Caption: a preview of the Flamerial theme applied on vim
. The font used is Hack and status bar plugin is vim-airline.
The following dependencies are required to install it:
- git: it will be used to clone this repository.
If you want to install it manually, without a plugin manager, follow these steps:
- Clone this repository using
git
:
git clone --depth 1 https://github.com/skippyr/flamerial.vim;
- Copy its directories to your
vim
/neovim
configuration directory:
# For vim
mkdir -p ~/.vim;
cp -r flamerial.vim/{autoload,colors} ~/.vim;
# For neovim
mkdir -p ~/.config/nvim;
cp -r flamerial.vim/{autoload,colors} ~/.config/nvim;
- Apply the theme in your
~/.vimrc
(forvim
),~/.config/nvim/init.vim
(forneovim
using VimScript) or~/.config/nvim/init.lua
(forneovim
using Lua) configuration file:
" For ~/.vimrc and ~/.config/nvim/init.vim
set termguicolors
syntax on
colorscheme flamerial
-- For ~/.config/nvim/init.lua
vim.opt.termguicolors = true
vim.cmd('syntax on')
vim.cmd('colorscheme flamerial')
- Reopen
vim
/neovim
.
If you want to install it using the plug
plugin manager, follow these steps:
- Plug this repository and apply the theme in your
~/.vimrc
(forvim
) or~/.config/nvim/init.vim
(forneovim
) configuration file:
call plug#begin()
Plug 'skippyr/flamerial.vim'
call plug#end()
set termguicolors
syntax on
colorscheme flamerial
- Reopen
vim
/neovim
. - Run the
:PlugInstall
command to install the theme. - Reopen
vim
/neovim
.
If you want to install it using the packer
plugin manager, follow these steps:
- Use this repository in your
~/.config/nvim/lua/plugins.lua
plugins file.
return require('packer').startup(function(use)
use('wbthomason/packer.nvim')
use('skippyr/flamerial.vim')
end)
- Apply the theme in your
~/.config/nvim/init.lua
configuration file.
require('plugins')
vim.opt.termguicolors = true
vim.cmd('syntax on')
vim.cmd('colorscheme flamerial')
- Reopen
neovim
. - Run the
:PackerSync
command to install the theme. - Reopen
neovim
.
If you need help about this project, open a new issue in its issues page or send me an e-mail describing what is going on.
This project is open to review and possibly accept contributions, specially fixes and suggestions. If you are interested, send your contribution to its pull requests page or to my e-mail.
By contributing to this project, you must agree to license your work under the same license that the project uses.
This project is licensed under the MIT License. Refer to the LICENSE
file that comes in its source code for license and copyright details.
≥v≥v Here Be Dragons! ≥v≥
Made with love by skippyr <3