https://github.com/dekirisu/deki-rust.vim
my vim rust color scheme!
https://github.com/dekirisu/deki-rust.vim
rust rust-lang vim-colorscheme vim-plugin
Last synced: 5 months ago
JSON representation
my vim rust color scheme!
- Host: GitHub
- URL: https://github.com/dekirisu/deki-rust.vim
- Owner: dekirisu
- License: mit
- Created: 2024-07-31T11:27:29.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2025-01-02T16:16:15.000Z (over 1 year ago)
- Last Synced: 2025-04-22T18:25:48.976Z (over 1 year ago)
- Topics: rust, rust-lang, vim-colorscheme, vim-plugin
- Language: Vim Script
- Homepage:
- Size: 10.7 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Deki's Rust Vim
This plugin paints the syntax of rust code in the colors of [my vscode color theme 'dawn'](https://github.com/dekirisu/vscode-rust-themes) by using a modified version of [this unofficial rust syntax highlighting](https://github.com/lunacookies/vim-rust-syntax-ext). It's ideally used in conjunction with [the official plugin](https://github.com/rust-lang/rust.vim) for non-syntax features.

> [!WARNING]
> Right now, this color scheme only changes syntax colors and the few TUI elements I use.
> This means some elements might look rough on your side! (default colors)
## Installation
If you don’t have a plugin manager of choice I recommend [vim-plug](https://github.com/junegunn/vim-plug):
```viml
Plug 'dekirisu/deki-rust.vim'
```
To use my color scheme add this to your `.vimrc`:
```viml
if (has("termguicolors"))
set termguicolors
endif
colorscheme deki
```