vscode gone and update
This commit is contained in:
parent
678d445eae
commit
9a6cecf875
42 changed files with 657 additions and 1645 deletions
|
@ -3,8 +3,12 @@ return {
|
|||
lazy = false,
|
||||
dependencies = { 'nvim-lua/plenary.nvim', },
|
||||
config = function()
|
||||
require('flutter-tools').setup({})
|
||||
vim.keymap.set('n', '<leader>fd', '<cmd>FlutterDevices<CR>', { desc = 'show flutter devices' })
|
||||
vim.keymap.set('n', '<leader>fq', '<cmd>FlutterQuit<CR>', { desc = 'stop flutter' })
|
||||
require('flutter-tools').setup({
|
||||
fvm = true,
|
||||
dev_log = {
|
||||
-- enabled = false,
|
||||
open_cmd = 'FloutterLog'
|
||||
}
|
||||
})
|
||||
end,
|
||||
}
|
||||
|
|
|
@ -55,7 +55,9 @@ return {
|
|||
|
||||
local capabilities = require('blink.cmp').get_lsp_capabilities()
|
||||
local servers = {
|
||||
-- clangd = {},
|
||||
bashls = {},
|
||||
|
||||
clangd = {},
|
||||
rust_analyzer = {},
|
||||
pyright = {},
|
||||
|
||||
|
@ -64,6 +66,14 @@ return {
|
|||
cssls = {},
|
||||
vtsls = {},
|
||||
|
||||
kotlin_lsp = {},
|
||||
|
||||
-- kotlin_language_server = {
|
||||
-- init_options = {
|
||||
-- storagePath = vim.fn.stdpath('cache') .. '/kotlin_language_server', -- Explicit storage path
|
||||
-- },
|
||||
-- },
|
||||
|
||||
-- -- ... etc. See `:help lspconfig-all` for a list of all the pre-configured LSPs
|
||||
--
|
||||
-- Some languages (like typescript) have entire language plugins that can be useful:
|
||||
|
|
5
.config/nvim/lua/config/plugins/languages/markdown.lua
Normal file
5
.config/nvim/lua/config/plugins/languages/markdown.lua
Normal file
|
@ -0,0 +1,5 @@
|
|||
return {
|
||||
"OXY2DEV/markview.nvim",
|
||||
lazy = false,
|
||||
opts = {}
|
||||
}
|
|
@ -6,6 +6,7 @@ return {
|
|||
ensure_installed = {
|
||||
'bash',
|
||||
'c',
|
||||
'cpp',
|
||||
'diff',
|
||||
'html',
|
||||
'css',
|
||||
|
@ -24,7 +25,8 @@ return {
|
|||
'javascript',
|
||||
'typescript',
|
||||
'tsx',
|
||||
'regex'
|
||||
'regex',
|
||||
'kotlin'
|
||||
},
|
||||
auto_install = false,
|
||||
highlight = { enable = true, },
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue