Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/skippyr/flamerial.vim
The port of the flamerial theme for vim/neovim
https://github.com/skippyr/flamerial.vim
flamerial neovim-plugin neovim-theme vim vim-airline vim-plugin vim-script vim-theme
Last synced: 15 days ago
JSON representation
The port of the flamerial theme for vim/neovim
- Host: GitHub
- URL: https://github.com/skippyr/flamerial.vim
- Owner: skippyr
- License: mit
- Created: 2023-05-27T21:13:33.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-03-11T14:19:44.000Z (11 months ago)
- Last Synced: 2024-03-11T18:42:52.525Z (11 months ago)
- Topics: flamerial, neovim-plugin, neovim-theme, vim, vim-airline, vim-plugin, vim-script, vim-theme
- Language: Vim Script
- Homepage:
- Size: 4.89 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
≥v≥v flamerial.vim ≥v≥v
## ❡ About
The port of the [Flamerial](https://github.com/skippyr/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`:
```sh
git clone --depth 1 https://github.com/skippyr/flamerial.vim;
```- Copy its directories to your `vim`/`neovim` configuration directory:
```sh
# 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:
```vim
" For ~/.vimrc and ~/.config/nvim/init.vim
set termguicolors
syntax on
colorscheme flamerial
``````lua
-- 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`](https://github.com/junegunn/vim-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:
```vim
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`](https://github.com/wbthomason/packer.nvim) plugin manager, follow these steps:
- Use this repository in your `~/.config/nvim/lua/plugins.lua` plugins file.
```lua
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.
```lua
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](https://github.com/skippyr/flamerial.vim/issues) or send me an [e-mail](mailto:[email protected]) 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](https://github.com/skippyr/flamerial.vim/pulls) or to my [e-mail](mailto:[email protected]).
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