vscode gone and update

This commit is contained in:
RafayAhmad7548 2025-06-26 19:57:04 +05:00
parent 678d445eae
commit 9a6cecf875
42 changed files with 657 additions and 1645 deletions

View file

@ -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,
}

View file

@ -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:

View file

@ -0,0 +1,5 @@
return {
"OXY2DEV/markview.nvim",
lazy = false,
opts = {}
}

View file

@ -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, },