1
0
mirror of https://github.com/jdhao/nvim-config.git synced 2025-06-08 14:14:33 +02:00

disable language command in macOS for now

Due to packaging issue, nvim version 0.7.2 for macOS does not have
`:language` command built in, see also neovim/neovim#19127.
This commit is contained in:
jdhao 2022-08-06 22:36:49 +08:00
parent 6b59c268f9
commit 3de31f7d0a

View File

@ -37,7 +37,9 @@ let g:mapleader = ','
let g:vimsyn_embed = 'l'
" Use English as main language
language en_US.utf-8
if !g:is_mac
language en_US.utf-8
endif
" use filetype.lua instead of filetype.vim
let g:do_filetype_lua = 1