Skip to content
This repository has been archived by the owner on Apr 27, 2024. It is now read-only.
/ flamerial.vim Public archive

The port of the flamerial theme for vim/neovim

License

Notifications You must be signed in to change notification settings

skippyr/flamerial.vim

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

99 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

≥v≥v flamerial.vim ≥v≥v

     

❡ About

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.

❡ Install

Dependencies

The following dependencies are required to install it:

  • git: it will be used to clone this repository.

Manual Procedures (vim/neovim)

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 (for vim), ~/.config/nvim/init.vim (for neovim using VimScript) or ~/.config/nvim/init.lua (for neovim 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.

Procedures For Plug (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 (for vim) or ~/.config/nvim/init.vim (for neovim) 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.

Procedures For Packer (only 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.

❡ Help

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.

❡ Contributing

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.

❡ License

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