download godot and add gdscript lsp to neovim
This commit is contained in:
parent
fbca7499c8
commit
6bffbe8492
4 changed files with 14 additions and 2 deletions
|
|
@ -219,6 +219,10 @@
|
||||||
protoc-gen-go
|
protoc-gen-go
|
||||||
protoc-gen-go-grpc
|
protoc-gen-go-grpc
|
||||||
|
|
||||||
|
# Gamedev
|
||||||
|
godot
|
||||||
|
ldtk
|
||||||
|
|
||||||
# Other
|
# Other
|
||||||
hugo # Для моего блога
|
hugo # Для моего блога
|
||||||
yaml-language-server # YAML LSP
|
yaml-language-server # YAML LSP
|
||||||
|
|
|
||||||
|
|
@ -73,7 +73,14 @@ return {
|
||||||
filetypes = {},
|
filetypes = {},
|
||||||
log = { enabled = false, level = 'INFO', stdout = {}, log_file = {}, notify = {} },
|
log = { enabled = false, level = 'INFO', stdout = {}, log_file = {}, notify = {} },
|
||||||
text_format = text_format,
|
text_format = text_format,
|
||||||
kinds = { SymbolKind.Function, SymbolKind.Method, SymbolKind.Class, SymbolKind.Struct, SymbolKind.Variable, SymbolKind.Constant },
|
kinds = {
|
||||||
|
SymbolKind.Function,
|
||||||
|
SymbolKind.Method,
|
||||||
|
SymbolKind.Class,
|
||||||
|
SymbolKind.Struct,
|
||||||
|
-- SymbolKind.Variable,
|
||||||
|
SymbolKind.Constant,
|
||||||
|
},
|
||||||
}
|
}
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
|
|
|
||||||
|
|
@ -303,6 +303,7 @@ return {
|
||||||
lspconfig.vimls.setup {}
|
lspconfig.vimls.setup {}
|
||||||
lspconfig.yamlls.setup {}
|
lspconfig.yamlls.setup {}
|
||||||
lspconfig.protols.setup {}
|
lspconfig.protols.setup {}
|
||||||
|
lspconfig.gdscript.setup {} -- Сам LSP в двигло встроен. Для линтера gdtoolkit_4 нужен
|
||||||
-- lspconfig.buf_ls.setup {}
|
-- lspconfig.buf_ls.setup {}
|
||||||
|
|
||||||
-- Ensure the servers and tools above are installed
|
-- Ensure the servers and tools above are installed
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
-- If you want to see what colorschemes are already installed, you can use `:Telescope colorscheme`.
|
-- If you want to see what colorschemes are already installed, you can use `:Telescope colorscheme`.
|
||||||
|
|
||||||
-- Cмена тем тут сделана уёбищно
|
-- Cмена тем тут сделана уёбищно
|
||||||
-- Чтоб сменить стандартную тему, надо раскомментировать vim.cmd.colorscheme пад именем темы
|
-- Чтоб сменить стандартную тему, надо раскомментировать vim.cmd.colorscheme под именем темы
|
||||||
-- и закомментировать это же у прошлой темы
|
-- и закомментировать это же у прошлой темы
|
||||||
|
|
||||||
-- В lazy.nvim параметр priority определяет порядок загрузки плагинов.
|
-- В lazy.nvim параметр priority определяет порядок загрузки плагинов.
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue