annotate mlir/utils/vim/README @ 266:00f31e85ec16 default tip

Added tag current for changeset 31d058e83c98
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Sat, 14 Oct 2023 10:13:55 +0900
parents c4bab56944e8
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
150
anatofuz
parents:
diff changeset
1 -*- mlir/utils/vim/README -*-
anatofuz
parents:
diff changeset
2
anatofuz
parents:
diff changeset
3 This directory contains settings for the vim editor to work on MLIR *.mlir
anatofuz
parents:
diff changeset
4 files. It comes with filetype detection rules in the (ftdetect),
anatofuz
parents:
diff changeset
5 syntax highlighting (syntax), some minimal sensible default settings (ftplugin)
anatofuz
parents:
diff changeset
6 and indentation plugins (indent).
anatofuz
parents:
diff changeset
7
anatofuz
parents:
diff changeset
8 To install, copy all subdirectories to your $HOME/.vim/, or if you
anatofuz
parents:
diff changeset
9 prefer, create symlinks to the files here.
236
c4bab56944e8 LLVM 16
kono
parents: 150
diff changeset
10
c4bab56944e8 LLVM 16
kono
parents: 150
diff changeset
11 To enable highlighting inside the Markdown docs, one can add
c4bab56944e8 LLVM 16
kono
parents: 150
diff changeset
12
c4bab56944e8 LLVM 16
kono
parents: 150
diff changeset
13 ```
c4bab56944e8 LLVM 16
kono
parents: 150
diff changeset
14 let g:markdown_fenced_languages = ['mlir']
c4bab56944e8 LLVM 16
kono
parents: 150
diff changeset
15 ```
c4bab56944e8 LLVM 16
kono
parents: 150
diff changeset
16
c4bab56944e8 LLVM 16
kono
parents: 150
diff changeset
17 to `.vimrc`.