https://github.com/jasen215/oneleaf.vim
highlight color scheme for vim/nvim
https://github.com/jasen215/oneleaf.vim
colorscheme neovim nvim vim
Last synced: 5 months ago
JSON representation
highlight color scheme for vim/nvim
- Host: GitHub
- URL: https://github.com/jasen215/oneleaf.vim
- Owner: jasen215
- Created: 2024-08-03T13:59:19.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-08-14T09:46:33.000Z (almost 2 years ago)
- Last Synced: 2025-02-01T23:41:14.684Z (over 1 year ago)
- Topics: colorscheme, neovim, nvim, vim
- Language: Vim Script
- Homepage:
- Size: 975 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# OneLeaf
A light colorscheme for Vim/NVIM.


## Features
- 16 colors
- 256 colors
- Supports Vim and Neovim
## Usage
## Installation
Install manually or use a package manager:
```viml
" vim-plug
Plug 'jasen215/oneleaf.vim'
" Vundle
Plugin 'jasen215/oneleaf.vim'
" Lazy
{
"jasen215/oneleaf.vim",
lazy = false,
priority = 1000,
config = function()
-- load the colorscheme here
vim.cmd([[colorscheme oneleaf]])
end,
},
```
Once your plugin is installed you can set the color scheme in your `.vimrc` or `init.vim`
```viml
" If you have vim >=8.0 or Neovim >= 0.1.5
if (has("termguicolors"))
set termguicolors
endif
" For Neovim 0.1.3 and 0.1.4
let $NVIM_TUI_ENABLE_TRUE_COLOR=1
" Theme
syntax enable
colorscheme oneleaf
```
---
© 2020 Released under [MIT License](https://raw.github.com/jacoborus/nanobar/master/LICENSE)