Compare commits
No commits in common. "7d64ff07b0aa622cdd7348bf4ce387b903dd708e" and "9f68c115066571dcae23b300d5907c3e9c01dbe3" have entirely different histories.
7d64ff07b0
...
9f68c11506
4 changed files with 2 additions and 17 deletions
|
@ -149,12 +149,6 @@ augroup lexical
|
|||
autocmd FileType tex lexical#init()
|
||||
augroup END
|
||||
|
||||
g:mucomplete#can_complete = {
|
||||
default: {
|
||||
omni: (t) => strlen(&l:omnifunc) > 0 && (t =~# '\m\k\k$' || (g:mucomplete_with_key && t =~# '\m\S$'))
|
||||
}
|
||||
}
|
||||
|
||||
# Configure a statusline and tabline using vim-crystalline. I tried a bunch of
|
||||
# different statusline plugins and this one, which is basically just a utility
|
||||
# library for writing your *own* statusline functions, worked the best for my
|
||||
|
|
|
@ -35,6 +35,6 @@ export def Configure(): void
|
|||
augroup END
|
||||
endif
|
||||
|
||||
g:lsp#options#OptionsSet(options.lspOptions)
|
||||
g:lsp#lsp#AddServer(installedServers)
|
||||
g:lsp#options#OptionsSet(options.lspOptions)
|
||||
enddef
|
||||
|
|
|
@ -2,7 +2,6 @@ vim9script
|
|||
|
||||
export const lspOptions = {
|
||||
aleSupport: true,
|
||||
autoComplete: false, # I prefer manual tab completion using MUcomplete
|
||||
ignoreMissingServer: true,
|
||||
}
|
||||
|
||||
|
|
|
@ -4,14 +4,6 @@ import '../tools/perl.vim'
|
|||
import '../tools/strings.vim'
|
||||
|
||||
const lspServers = [
|
||||
{
|
||||
name: 'clojure-lsp',
|
||||
filetype: 'clojure',
|
||||
path: '/usr/local/bin/clojure-lsp',
|
||||
args: [],
|
||||
install: 'brew install clojure-lsp/brew/clojure-lsp-native',
|
||||
},
|
||||
|
||||
{
|
||||
name: 'dockerfile-langserver',
|
||||
filetype: 'dockerfile',
|
||||
|
@ -144,7 +136,7 @@ const lspServers = [
|
|||
|
||||
{
|
||||
name: 'vscode-css-language-server',
|
||||
filetype: ['css', 'less', 'sass', 'scss'],
|
||||
filetype: 'css',
|
||||
path: expand('~/.local/bin/vscode-css-language-server'),
|
||||
args: ['--stdio'],
|
||||
install: 'npm install -g vscode-langservers-extracted',
|
||||
|
|
Loading…
Reference in a new issue