diff --git a/README.md b/README.md index ee98348101..4112147347 100644 --- a/README.md +++ b/README.md @@ -515,28 +515,6 @@ git clone https://github.com/NoahTheDuke/vim-just.git [Nvim Treesitter](https://github.com/nvim-treesitter/nvim-treesitter) plugin for Neovim. -#### Makefile Syntax Highlighting - -Vim's built-in makefile syntax highlighting isn't perfect for `justfile`s, but -it's better than nothing. You can put the following in `~/.vim/filetype.vim`: - -```vimscript -if exists("did_load_filetypes") - finish -endif - -augroup filetypedetect - au BufNewFile,BufRead justfile setf make -augroup END -``` - -Or add the following to an individual `justfile` to enable `make` mode on a -per-file basis: - -```text -# vim: set ft=make : -``` - ### Emacs [just-mode](https://github.com/leon-barrett/just-mode.el) provides syntax diff --git a/justfile b/justfile index cfd9400d58..2ddd6dbec6 100755 --- a/justfile +++ b/justfile @@ -233,4 +233,3 @@ test-release-workflow: # Local Variables: # mode: makefile # End: -# vim: set ft=make :