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()
|
autocmd FileType tex lexical#init()
|
||||||
augroup END
|
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
|
# 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
|
# different statusline plugins and this one, which is basically just a utility
|
||||||
# library for writing your *own* statusline functions, worked the best for my
|
# library for writing your *own* statusline functions, worked the best for my
|
||||||
|
|
|
@ -35,6 +35,6 @@ export def Configure(): void
|
||||||
augroup END
|
augroup END
|
||||||
endif
|
endif
|
||||||
|
|
||||||
g:lsp#options#OptionsSet(options.lspOptions)
|
|
||||||
g:lsp#lsp#AddServer(installedServers)
|
g:lsp#lsp#AddServer(installedServers)
|
||||||
|
g:lsp#options#OptionsSet(options.lspOptions)
|
||||||
enddef
|
enddef
|
||||||
|
|
|
@ -2,7 +2,6 @@ vim9script
|
||||||
|
|
||||||
export const lspOptions = {
|
export const lspOptions = {
|
||||||
aleSupport: true,
|
aleSupport: true,
|
||||||
autoComplete: false, # I prefer manual tab completion using MUcomplete
|
|
||||||
ignoreMissingServer: true,
|
ignoreMissingServer: true,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,14 +4,6 @@ import '../tools/perl.vim'
|
||||||
import '../tools/strings.vim'
|
import '../tools/strings.vim'
|
||||||
|
|
||||||
const lspServers = [
|
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',
|
name: 'dockerfile-langserver',
|
||||||
filetype: 'dockerfile',
|
filetype: 'dockerfile',
|
||||||
|
@ -144,7 +136,7 @@ const lspServers = [
|
||||||
|
|
||||||
{
|
{
|
||||||
name: 'vscode-css-language-server',
|
name: 'vscode-css-language-server',
|
||||||
filetype: ['css', 'less', 'sass', 'scss'],
|
filetype: 'css',
|
||||||
path: expand('~/.local/bin/vscode-css-language-server'),
|
path: expand('~/.local/bin/vscode-css-language-server'),
|
||||||
args: ['--stdio'],
|
args: ['--stdio'],
|
||||||
install: 'npm install -g vscode-langservers-extracted',
|
install: 'npm install -g vscode-langservers-extracted',
|
||||||
|
|
Loading…
Reference in a new issue