diff options
author | awy <awy@awy.one> | 2025-10-18 00:10:58 +0300 |
---|---|---|
committer | awy <awy@awy.one> | 2025-10-18 00:10:58 +0300 |
commit | abf932d721142a35e01a57ab9187ca35896cb237 (patch) | |
tree | 2cce67586b1792f33fd703072673b2a0767b473e /.config/nvim/lsp/vimls.lua | |
parent | de009fd679e10d053fdcc10785f91ad5317449ea (diff) | |
download | hyprdots-abf932d721142a35e01a57ab9187ca35896cb237.tar.gz |
revert
Diffstat (limited to '.config/nvim/lsp/vimls.lua')
-rw-r--r-- | .config/nvim/lsp/vimls.lua | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/.config/nvim/lsp/vimls.lua b/.config/nvim/lsp/vimls.lua deleted file mode 100644 index ba202c1..0000000 --- a/.config/nvim/lsp/vimls.lua +++ /dev/null @@ -1,29 +0,0 @@ ----@brief ---- ---- https://github.com/iamcco/vim-language-server ---- ---- You can install vim-language-server via npm: ---- ```sh ---- npm install -g vim-language-server ---- ``` - ----@type vim.lsp.Config -return { - cmd = { 'vim-language-server', '--stdio' }, - filetypes = { 'vim' }, - root_markers = { '.git' }, - init_options = { - isNeovim = true, - iskeyword = '@,48-57,_,192-255,-#', - vimruntime = '', - runtimepath = '', - diagnostic = { enable = true }, - indexes = { - runtimepath = true, - gap = 100, - count = 3, - projectRootPatterns = { 'runtime', 'nvim', '.git', 'autoload', 'plugin' }, - }, - suggest = { fromVimruntime = true, fromRuntimepath = true }, - }, -} |