updates
This commit is contained in:
parent
9f0ec8b7ea
commit
fcbec026fe
4
ftplugin/dart.lua
Normal file
4
ftplugin/dart.lua
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
vim.bo.tabstop = 2 -- size of a hard tabstop (ts).
|
||||||
|
vim.bo.shiftwidth = 2 -- size of an indentation (sw).
|
||||||
|
vim.bo.expandtab = true -- always uses spaces instead of tab characters (et).
|
||||||
|
vim.bo.softtabstop = 2 -- number of spaces a <Tab> counts for. When 0, feature is off (sts).
|
@ -111,7 +111,8 @@ cmp.setup {
|
|||||||
},
|
},
|
||||||
sources = {
|
sources = {
|
||||||
{ name = "nvim_lsp" },
|
{ name = "nvim_lsp" },
|
||||||
-- { name = "luasnip" },
|
{ name = "nvim_lsp_signature_help" },
|
||||||
|
{ name = "luasnip" },
|
||||||
{ name = "buffer" },
|
{ name = "buffer" },
|
||||||
{ name = "path" },
|
{ name = "path" },
|
||||||
},
|
},
|
||||||
|
@ -7,7 +7,7 @@ end
|
|||||||
|
|
||||||
dap.adapters.coreclr = {
|
dap.adapters.coreclr = {
|
||||||
type = 'executable',
|
type = 'executable',
|
||||||
command = '/home/cuqmbr/.local/bin/netcoredbg/netcoredbg',
|
command = 'netcoredbg',
|
||||||
args = {'--interpreter=vscode'}
|
args = {'--interpreter=vscode'}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -16,12 +16,39 @@ dap.configurations.cs = {
|
|||||||
type = "coreclr",
|
type = "coreclr",
|
||||||
name = "launch - netcoredbg",
|
name = "launch - netcoredbg",
|
||||||
request = "launch",
|
request = "launch",
|
||||||
|
env = {
|
||||||
|
ASPNETCORE_ENVIRONMENT = "Development",
|
||||||
|
DOTNET_ENVIRONMENT = "Development"
|
||||||
|
},
|
||||||
program = function()
|
program = function()
|
||||||
return vim.fn.input('Path to dll', vim.fn.getcwd(), 'file')
|
return vim.fn.input('Path to dll ', vim.fn.getcwd(), 'file')
|
||||||
end,
|
end,
|
||||||
|
cwd = "${workspaceFolder}/ShoppingAssistantApi.Api",
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
|
-- Flutter on Dart
|
||||||
|
|
||||||
|
dap.adapters.dart = {
|
||||||
|
type = "executable",
|
||||||
|
command = "flutter",
|
||||||
|
-- This command was introduced upstream in https://github.com/dart-lang/sdk/commit/b68ccc9a
|
||||||
|
args = {"debug_adapter"}
|
||||||
|
}
|
||||||
|
|
||||||
|
dap.configurations.dart = {
|
||||||
|
{
|
||||||
|
type = "dart",
|
||||||
|
request = "launch",
|
||||||
|
name = "Launch Flutter Program",
|
||||||
|
-- The nvim-dap plugin populates this variable with the filename of the current buffer
|
||||||
|
program = "${file}",
|
||||||
|
-- The nvim-dap plugin populates this variable with the editor's current working directory
|
||||||
|
cwd = "${workspaceFolder}",
|
||||||
|
-- toolArgs = {"-d", "linux"}, -- Note for Dart apps this is args, for Flutter apps toolArgs
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
-- DapUI
|
-- DapUI
|
||||||
|
|
||||||
local dapui_status_ok, dapui = pcall(require, "dapui")
|
local dapui_status_ok, dapui = pcall(require, "dapui")
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
local status_ok, indent_blankline = pcall(require, "indent_blankline")
|
local status_ok, indent_blankline = pcall(require, "ibl")
|
||||||
if not status_ok then
|
if not status_ok then
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
@ -60,7 +60,7 @@ vim.wo.colorcolumn = "99999"
|
|||||||
indent_blankline.setup({
|
indent_blankline.setup({
|
||||||
-- show_end_of_line = true,
|
-- show_end_of_line = true,
|
||||||
-- space_char_blankline = " ",
|
-- space_char_blankline = " ",
|
||||||
show_current_context = true,
|
-- show_current_context = true,
|
||||||
-- show_current_context_start = true,
|
-- show_current_context_start = true,
|
||||||
-- char_highlight_list = {
|
-- char_highlight_list = {
|
||||||
-- "IndentBlanklineIndent1",
|
-- "IndentBlanklineIndent1",
|
||||||
|
@ -8,6 +8,7 @@ end
|
|||||||
M.capabilities = vim.lsp.protocol.make_client_capabilities()
|
M.capabilities = vim.lsp.protocol.make_client_capabilities()
|
||||||
M.capabilities.textDocument.completion.completionItem.snippetSupport = true
|
M.capabilities.textDocument.completion.completionItem.snippetSupport = true
|
||||||
M.capabilities = cmp_nvim_lsp.default_capabilities(M.capabilities)
|
M.capabilities = cmp_nvim_lsp.default_capabilities(M.capabilities)
|
||||||
|
M.capabilities.offsetEncoding = 'utf-16'
|
||||||
|
|
||||||
M.setup = function()
|
M.setup = function()
|
||||||
local signs = {
|
local signs = {
|
||||||
|
@ -1,6 +1,10 @@
|
|||||||
local servers = {
|
local servers = {
|
||||||
"lua_ls",
|
"lua_ls",
|
||||||
"omnisharp",
|
"omnisharp",
|
||||||
|
"bashls",
|
||||||
|
"jdtls",
|
||||||
|
"clangd",
|
||||||
|
"dartls",
|
||||||
}
|
}
|
||||||
|
|
||||||
local settings = {
|
local settings = {
|
||||||
|
@ -1,20 +1,20 @@
|
|||||||
local null_ls_status_ok, null_ls = pcall(require, "null-ls")
|
-- local null_ls_status_ok, null_ls = pcall(require, "null-ls")
|
||||||
if not null_ls_status_ok then
|
-- if not null_ls_status_ok then
|
||||||
return
|
-- return
|
||||||
end
|
-- end
|
||||||
|
--
|
||||||
-- https://github.com/jose-elias-alvarez/null-ls.nvim/tree/main/lua/null-ls/builtins/formatting
|
-- -- https://github.com/jose-elias-alvarez/null-ls.nvim/tree/main/lua/null-ls/builtins/formatting
|
||||||
local formatting = null_ls.builtins.formatting
|
-- local formatting = null_ls.builtins.formatting
|
||||||
-- https://github.com/jose-elias-alvarez/null-ls.nvim/tree/main/lua/null-ls/builtins/diagnostics
|
-- -- https://github.com/jose-elias-alvarez/null-ls.nvim/tree/main/lua/null-ls/builtins/diagnostics
|
||||||
local diagnostics = null_ls.builtins.diagnostics
|
-- local diagnostics = null_ls.builtins.diagnostics
|
||||||
|
--
|
||||||
null_ls.setup({
|
-- null_ls.setup({
|
||||||
debug = false,
|
-- debug = false,
|
||||||
sources = {
|
-- sources = {
|
||||||
-- formatting.prettier.with({ extra_args = { "--no-semi", "--single-quote", "--jsx-single-quote" } }),
|
-- -- formatting.prettier.with({ extra_args = { "--no-semi", "--single-quote", "--jsx-single-quote" } }),
|
||||||
-- formatting.black.with({ extra_args = { "--fast" } }),
|
-- -- formatting.black.with({ extra_args = { "--fast" } }),
|
||||||
-- formatting.stylua,
|
-- -- formatting.stylua,
|
||||||
-- diagnostics.flake8
|
-- -- diagnostics.flake8
|
||||||
formatting.astyle
|
-- formatting.astyle
|
||||||
},
|
-- },
|
||||||
})
|
-- })
|
||||||
|
3
lua/user/lsp/settings/clangd.lua
Normal file
3
lua/user/lsp/settings/clangd.lua
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
return {
|
||||||
|
|
||||||
|
}
|
3
lua/user/lsp/settings/dartls.lua
Normal file
3
lua/user/lsp/settings/dartls.lua
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
return {
|
||||||
|
cmd = { "dart", 'language-server', '--protocol=lsp' },
|
||||||
|
}
|
3
lua/user/lsp/settings/jdtls.lua
Normal file
3
lua/user/lsp/settings/jdtls.lua
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
return {
|
||||||
|
root_dir = vim.loop.cwd,
|
||||||
|
}
|
@ -3,13 +3,6 @@ if not status_ok then
|
|||||||
return
|
return
|
||||||
end
|
end
|
||||||
|
|
||||||
local config_status_ok, nvim_tree_config = pcall(require, "nvim-tree.config")
|
|
||||||
if not config_status_ok then
|
|
||||||
return
|
|
||||||
end
|
|
||||||
|
|
||||||
local tree_cb = nvim_tree_config.nvim_tree_callback
|
|
||||||
|
|
||||||
-- https://github.com/nvim-tree/nvim-tree.lua/wiki/Migrating-To-on_attach for assistance in migrating.
|
-- https://github.com/nvim-tree/nvim-tree.lua/wiki/Migrating-To-on_attach for assistance in migrating.
|
||||||
local function on_attach(bufnr)
|
local function on_attach(bufnr)
|
||||||
local api = require('nvim-tree.api')
|
local api = require('nvim-tree.api')
|
||||||
|
@ -42,7 +42,7 @@ return packer.startup(function(use)
|
|||||||
use "nvim-lua/plenary.nvim" -- Useful lua functions used by lots of plugins
|
use "nvim-lua/plenary.nvim" -- Useful lua functions used by lots of plugins
|
||||||
use "windwp/nvim-autopairs" -- Autopairs, integrates with both cmp and treesitter
|
use "windwp/nvim-autopairs" -- Autopairs, integrates with both cmp and treesitter
|
||||||
use "numToStr/Comment.nvim"
|
use "numToStr/Comment.nvim"
|
||||||
use "kyazdani42/nvim-tree.lua"
|
use "nvim-tree/nvim-tree.lua"
|
||||||
use "akinsho/bufferline.nvim"
|
use "akinsho/bufferline.nvim"
|
||||||
use "moll/vim-bbye"
|
use "moll/vim-bbye"
|
||||||
use { "nvim-lualine/lualine.nvim", requires = { "nvim-tree/nvim-web-devicons" } }
|
use { "nvim-lualine/lualine.nvim", requires = { "nvim-tree/nvim-web-devicons" } }
|
||||||
@ -63,10 +63,13 @@ return packer.startup(function(use)
|
|||||||
use "hrsh7th/nvim-cmp" -- The completion plugin
|
use "hrsh7th/nvim-cmp" -- The completion plugin
|
||||||
use "hrsh7th/cmp-buffer" -- buffer completions
|
use "hrsh7th/cmp-buffer" -- buffer completions
|
||||||
use "hrsh7th/cmp-path" -- path completions
|
use "hrsh7th/cmp-path" -- path completions
|
||||||
use "saadparwaiz1/cmp_luasnip" -- snippet completions
|
-- use "hrsh7th/cmp-cmdline"
|
||||||
use "hrsh7th/cmp-nvim-lsp"
|
use "hrsh7th/cmp-nvim-lsp"
|
||||||
|
use "hrsh7th/cmp-nvim-lsp-signature-help"
|
||||||
|
use "saadparwaiz1/cmp_luasnip" -- snippet completions
|
||||||
use "hrsh7th/cmp-nvim-lua"
|
use "hrsh7th/cmp-nvim-lua"
|
||||||
|
|
||||||
|
|
||||||
-- Snippets
|
-- Snippets
|
||||||
use "L3MON4D3/LuaSnip" --snippet engine
|
use "L3MON4D3/LuaSnip" --snippet engine
|
||||||
use "rafamadriz/friendly-snippets" -- a bunch of snippets to use
|
use "rafamadriz/friendly-snippets" -- a bunch of snippets to use
|
||||||
@ -90,6 +93,10 @@ return packer.startup(function(use)
|
|||||||
-- Git
|
-- Git
|
||||||
use "lewis6991/gitsigns.nvim"
|
use "lewis6991/gitsigns.nvim"
|
||||||
|
|
||||||
|
-- Flutter
|
||||||
|
-- use "neoclide/coc.nvim"
|
||||||
|
-- use "iamcco/coc-flutter"
|
||||||
|
|
||||||
-- Automatically set up your configuration after cloning packer.nvim
|
-- Automatically set up your configuration after cloning packer.nvim
|
||||||
-- Put this at the end after all plugins
|
-- Put this at the end after all plugins
|
||||||
if packer_bootstrap then
|
if packer_bootstrap then
|
||||||
|
@ -4,8 +4,9 @@ if not status_ok then
|
|||||||
end
|
end
|
||||||
|
|
||||||
configs.setup {
|
configs.setup {
|
||||||
-- ensure_installed = { "maintained" }, -- put the language you want in this array
|
modules = { "" },
|
||||||
-- ensure_installed = "c_sharp", -- one of "all" or a list of languages
|
auto_install = false,
|
||||||
|
ensure_installed = { "" }, -- put the language you want in this array
|
||||||
ignore_install = { "" }, -- List of parsers to ignore installing
|
ignore_install = { "" }, -- List of parsers to ignore installing
|
||||||
sync_install = false, -- install languages synchronously (only applied to `ensure_installed`)
|
sync_install = false, -- install languages synchronously (only applied to `ensure_installed`)
|
||||||
highlight = {
|
highlight = {
|
||||||
|
Loading…
Reference in New Issue
Block a user