blob: 589898249caf18ecc29d8f8e412cc188dddbb737 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
if exists('g:loaded_lsp_settings') || !exists('*json_encode') || !has('lambda')
finish
endif
let g:loaded_lsp_settings= 1
let g:lsp_settings_root_markers = get(g:, 'lsp_settings_root_markers', [
\ '.git/',
\ '.svn/',
\ '.hg/',
\ '.bzr/'
\ ])
command! -nargs=0 LspSettingsLocalEdit call lsp_settings#profile#edit_local()
call lsp_settings#init()
|