blob: ed9cc73eb48d7c9fba933033f635871de3f6060d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
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 LspSettingsStatus call lsp_settings#profile#status()
command! -nargs=0 LspSettingsLocalEdit call lsp_settings#profile#edit_local()
call lsp_settings#init()
|