This commit is contained in:
cuqmbr 2023-11-09 10:58:26 +02:00
parent 9f0ec8b7ea
commit fcbec026fe
Signed by: cuqmbr
GPG Key ID: 2D72ED98B6CB200F
13 changed files with 83 additions and 36 deletions

4
ftplugin/dart.lua Normal file
View 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).

View File

@ -111,7 +111,8 @@ cmp.setup {
},
sources = {
{ name = "nvim_lsp" },
-- { name = "luasnip" },
{ name = "nvim_lsp_signature_help" },
{ name = "luasnip" },
{ name = "buffer" },
{ name = "path" },
},

View File

@ -7,7 +7,7 @@ end
dap.adapters.coreclr = {
type = 'executable',
command = '/home/cuqmbr/.local/bin/netcoredbg/netcoredbg',
command = 'netcoredbg',
args = {'--interpreter=vscode'}
}
@ -16,12 +16,39 @@ dap.configurations.cs = {
type = "coreclr",
name = "launch - netcoredbg",
request = "launch",
env = {
ASPNETCORE_ENVIRONMENT = "Development",
DOTNET_ENVIRONMENT = "Development"
},
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,
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
local dapui_status_ok, dapui = pcall(require, "dapui")

View File

@ -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
return
end
@ -60,7 +60,7 @@ vim.wo.colorcolumn = "99999"
indent_blankline.setup({
-- show_end_of_line = true,
-- space_char_blankline = " ",
show_current_context = true,
-- show_current_context = true,
-- show_current_context_start = true,
-- char_highlight_list = {
-- "IndentBlanklineIndent1",

View File

@ -8,6 +8,7 @@ end
M.capabilities = vim.lsp.protocol.make_client_capabilities()
M.capabilities.textDocument.completion.completionItem.snippetSupport = true
M.capabilities = cmp_nvim_lsp.default_capabilities(M.capabilities)
M.capabilities.offsetEncoding = 'utf-16'
M.setup = function()
local signs = {

View File

@ -1,6 +1,10 @@
local servers = {
"lua_ls",
"omnisharp",
"bashls",
"jdtls",
"clangd",
"dartls",
}
local settings = {

View File

@ -1,20 +1,20 @@
local null_ls_status_ok, null_ls = pcall(require, "null-ls")
if not null_ls_status_ok then
return
end
-- https://github.com/jose-elias-alvarez/null-ls.nvim/tree/main/lua/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
local diagnostics = null_ls.builtins.diagnostics
null_ls.setup({
debug = false,
sources = {
-- formatting.prettier.with({ extra_args = { "--no-semi", "--single-quote", "--jsx-single-quote" } }),
-- formatting.black.with({ extra_args = { "--fast" } }),
-- formatting.stylua,
-- diagnostics.flake8
formatting.astyle
},
})
-- local null_ls_status_ok, null_ls = pcall(require, "null-ls")
-- if not null_ls_status_ok then
-- return
-- end
--
-- -- https://github.com/jose-elias-alvarez/null-ls.nvim/tree/main/lua/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
-- local diagnostics = null_ls.builtins.diagnostics
--
-- null_ls.setup({
-- debug = false,
-- sources = {
-- -- formatting.prettier.with({ extra_args = { "--no-semi", "--single-quote", "--jsx-single-quote" } }),
-- -- formatting.black.with({ extra_args = { "--fast" } }),
-- -- formatting.stylua,
-- -- diagnostics.flake8
-- formatting.astyle
-- },
-- })

View File

@ -0,0 +1,3 @@
return {
}

View File

@ -0,0 +1,3 @@
return {
cmd = { "dart", 'language-server', '--protocol=lsp' },
}

View File

@ -0,0 +1,3 @@
return {
root_dir = vim.loop.cwd,
}

View File

@ -3,13 +3,6 @@ if not status_ok then
return
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.
local function on_attach(bufnr)
local api = require('nvim-tree.api')

View File

@ -42,7 +42,7 @@ return packer.startup(function(use)
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 "numToStr/Comment.nvim"
use "kyazdani42/nvim-tree.lua"
use "nvim-tree/nvim-tree.lua"
use "akinsho/bufferline.nvim"
use "moll/vim-bbye"
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/cmp-buffer" -- buffer 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-signature-help"
use "saadparwaiz1/cmp_luasnip" -- snippet completions
use "hrsh7th/cmp-nvim-lua"
-- Snippets
use "L3MON4D3/LuaSnip" --snippet engine
use "rafamadriz/friendly-snippets" -- a bunch of snippets to use
@ -90,6 +93,10 @@ return packer.startup(function(use)
-- Git
use "lewis6991/gitsigns.nvim"
-- Flutter
-- use "neoclide/coc.nvim"
-- use "iamcco/coc-flutter"
-- Automatically set up your configuration after cloning packer.nvim
-- Put this at the end after all plugins
if packer_bootstrap then

View File

@ -4,8 +4,9 @@ if not status_ok then
end
configs.setup {
-- ensure_installed = { "maintained" }, -- put the language you want in this array
-- ensure_installed = "c_sharp", -- one of "all" or a list of languages
modules = { "" },
auto_install = false,
ensure_installed = { "" }, -- put the language you want in this array
ignore_install = { "" }, -- List of parsers to ignore installing
sync_install = false, -- install languages synchronously (only applied to `ensure_installed`)
highlight = {