Skip to content
This repository has been archived by the owner on Jun 17, 2024. It is now read-only.

Integration

Fymyte edited this page Jan 5, 2022 · 3 revisions

Colors

Integrate with vim-css-color for color highlighting

Installation

vim-plug

Plug 'ap/vim-css-color'
Plug 'Fymyte/rasi.vim'
use {
  'Fymyte/rasi.vim',
  ft = { 'rasi' },
  requires = { 'ap/vim-css-color' },
}

Treesitter

Integrates with nvim-treesitter for better error checking and faster highlighting

Installation

vim-plug

Plug 'nvim-treesitter/nvim-treesitter'
Plug 'Fymyte/rasi.vim'

and install rasi parser by running

:TSInstall rasi
use {
  'Fymyte/rasi.vim',
  ft = { 'rasi' },
  run = ':TSInstall rasi',
  requires = { 'nvim-treesitter/nvim-treesitter' },
}
Clone this wiki locally