Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/stefanvanburen/rams
a minimal neovim colorscheme
https://github.com/stefanvanburen/rams
colorscheme neovim neovim-colorscheme neovim-plugin
Last synced: about 1 month ago
JSON representation
a minimal neovim colorscheme
- Host: GitHub
- URL: https://github.com/stefanvanburen/rams
- Owner: stefanvanburen
- License: mit
- Created: 2021-11-06T19:47:06.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-11-09T11:51:31.000Z (about 1 year ago)
- Last Synced: 2024-06-12T17:30:04.970Z (5 months ago)
- Topics: colorscheme, neovim, neovim-colorscheme, neovim-plugin
- Language: Lua
- Homepage:
- Size: 31.3 KB
- Stars: 7
- Watchers: 3
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# rams
A colorscheme for neovim (and maybe, eventually, more?).
For now, the colors have been migrated from [rams.vim](https://github.com/stefanvanburen/rams.vim),
which used [vim-colortemplate](https://github.com/lifepillar/vim-colortemplate),
to this repository,
which is using [lush.nvim](https://github.com/rktjmp/lush.nvim).## Installation
[lazy.nvim](https://github.com/folke/lazy.nvim):
```lua
{
"stefanvanburen/rams",
lazy = false,
priority = 1000,
dependencies = {
"rktjmp/lush.nvim",
},
config = function()
vim.cmd([[colorscheme rams]])
end,
}
```## Usage
```vim
set termguicolors
" Only light mode is supported for now, see #9
set background=light
colorscheme rams
```## Supported Plugins
* [gitsigns.nvim](https://github.com/lewis6991/gitsigns.nvim)
* [ALE](https://github.com/dense-analysis/ale)
* [fugitive](https://github.com/tpope/vim-fugitive)
* [vim-better-whitespace](https://github.com/ntpeters/vim-better-whitespace)
* [neovim's builtin LSP client (nvim-lsp)](https://neovim.io/doc/user/lsp.html)
* [mason.nvim](https://github.com/williamboman/mason.nvim)
* [mini.trailspace](https://github.com/echasnovski/mini.nvim#minitrailspace)