From a615cd67237f13a2a92836aff34837b5c069d368 Mon Sep 17 00:00:00 2001 From: "matthias@arch" Date: Thu, 14 Dec 2023 08:16:05 +0100 Subject: [PATCH] move proc option to vimrc --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 6923aa1..fedf50b 100644 --- a/README.md +++ b/README.md @@ -35,9 +35,9 @@ call plug#end() ## Configuration ### Select processor By default, the syntax highlighting only highlights the original 6502 instructions. -To enable the illegal/undocumented instructions, the 65C02 instructions or the 65816 instructions, write this into `~/.vim/ftplugin/ca65.vim`: +To enable the illegal/undocumented instructions, the 65C02 instructions or the 65816 instructions, write this into your `vimrc`: ```vim -" in ~/.vim/ftplugin/ca65.vim (or vimrc) +" in ~/.vimrc let g:ca65_illegal = 1 " enable the illegal 6502 opcodes let g:ca65_65C02 = 1 " enable 65C02 instructions let g:ca65_65816 = 1 " enable 65816 instructions