Compare commits
5 commits
f6051a1f29
...
39e987678c
Author | SHA1 | Date | |
---|---|---|---|
|
39e987678c | ||
|
34ad9056ca | ||
|
a2ff5d1b6a | ||
|
ef337e45c0 | ||
|
066769e6f9 |
|
@ -233,11 +233,13 @@ in
|
||||||
# See https://wiki.hyprland.org/Configuring/Variables/ for more
|
# See https://wiki.hyprland.org/Configuring/Variables/ for more
|
||||||
|
|
||||||
rounding = 8
|
rounding = 8
|
||||||
# FIXME: Check these deprecations.
|
|
||||||
#blur = yes
|
blur {
|
||||||
#blur_size = 3
|
enabled = true
|
||||||
#blur_passes = 1
|
size = 8
|
||||||
#blur_new_optimizations = on
|
passes = 1
|
||||||
|
new_optimizations = true
|
||||||
|
}
|
||||||
|
|
||||||
shadow {
|
shadow {
|
||||||
enabled = true
|
enabled = true
|
||||||
|
|
|
@ -153,15 +153,7 @@ in
|
||||||
|
|
||||||
substituteInPlace $out \
|
substituteInPlace $out \
|
||||||
--replace-fail "{hostname}" "${config.programs.neovim.nixd.hostname}" \
|
--replace-fail "{hostname}" "${config.programs.neovim.nixd.hostname}" \
|
||||||
--replace-fail "{location}" "${config.programs.neovim.nixd.location}" \
|
--replace-fail "{location}" "${config.programs.neovim.nixd.location}"
|
||||||
--replace-fail "{pkgs.vue-language-server}" "${pkgs.vue-language-server}"
|
|
||||||
'';
|
|
||||||
|
|
||||||
xdg.configFile."nvim/lua/polish.lua".source = pkgs.runCommand "polish.lua" { } ''
|
|
||||||
cp ${./polish.lua} $out
|
|
||||||
|
|
||||||
substituteInPlace $out \
|
|
||||||
--replace-fail "{pkgs.vscode-extensions.ms-vscode.cpptools}" "${pkgs.vscode-extensions.ms-vscode.cpptools}" \
|
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -122,7 +122,7 @@ function M:start()
|
||||||
|
|
||||||
vim.fn.setenv("DOTNET_ENVIRONMENT", "Development")
|
vim.fn.setenv("DOTNET_ENVIRONMENT", "Development")
|
||||||
|
|
||||||
local debugger_path = vim.fn.getnixpath "netcoredbg" .. "/bin/netcoredbg"
|
local debugger_path = vim.fn.get_nix_store "netcoredbg" .. "/bin/netcoredbg"
|
||||||
|
|
||||||
local dap = require "dap"
|
local dap = require "dap"
|
||||||
|
|
||||||
|
|
|
@ -3,17 +3,21 @@
|
||||||
local lazypath = vim.env.LAZY or vim.fn.stdpath "data" .. "/lazy/lazy.nvim"
|
local lazypath = vim.env.LAZY or vim.fn.stdpath "data" .. "/lazy/lazy.nvim"
|
||||||
if not (vim.env.LAZY or (vim.uv or vim.loop).fs_stat(lazypath)) then
|
if not (vim.env.LAZY or (vim.uv or vim.loop).fs_stat(lazypath)) then
|
||||||
-- stylua: ignore
|
-- stylua: ignore
|
||||||
vim.fn.system({ "git", "clone", "--filter=blob:none", "https://github.com/folke/lazy.nvim.git", "--branch=stable", lazypath })
|
vim.fn.system({ "git", "clone", "--filter=blob:none", "https://github.com/folke/lazy.nvim.git", "--branch=stable",
|
||||||
|
lazypath })
|
||||||
end
|
end
|
||||||
vim.opt.rtp:prepend(lazypath)
|
vim.opt.rtp:prepend(lazypath)
|
||||||
|
|
||||||
-- validate that lazy is available
|
-- validate that lazy is available
|
||||||
if not pcall(require, "lazy") then
|
if not pcall(require, "lazy") then
|
||||||
-- stylua: ignore
|
-- stylua: ignore
|
||||||
vim.api.nvim_echo({ { ("Unable to load lazy from: %s\n"):format(lazypath), "ErrorMsg" }, { "Press any key to exit...", "MoreMsg" } }, true, {})
|
vim.api.nvim_echo(
|
||||||
vim.fn.getchar()
|
{ { ("Unable to load lazy from: %s\n"):format(lazypath), "ErrorMsg" }, { "Press any key to exit...", "MoreMsg" } },
|
||||||
vim.cmd.quit()
|
true, {})
|
||||||
|
vim.fn.getchar()
|
||||||
|
vim.cmd.quit()
|
||||||
end
|
end
|
||||||
|
|
||||||
|
require "util"
|
||||||
require "lazy_setup"
|
require "lazy_setup"
|
||||||
require "polish"
|
require "polish"
|
||||||
|
|
|
@ -6,196 +6,205 @@
|
||||||
---@type LazySpec
|
---@type LazySpec
|
||||||
return {
|
return {
|
||||||
"AstroNvim/astrolsp",
|
"AstroNvim/astrolsp",
|
||||||
---@type AstroLSPOpts
|
---@param opts AstroLSPOpts
|
||||||
opts = {
|
---@return AstroLSPOpts
|
||||||
-- Configuration table of features provided by AstroLSP
|
opts = function(_, opts)
|
||||||
features = {
|
---@type AstroLSPOpts
|
||||||
autoformat = true, -- enable or disable auto formatting on start
|
local lsp_options = {
|
||||||
codelens = true, -- enable/disable codelens refresh on start
|
-- Configuration table of features provided by AstroLSP
|
||||||
inlay_hints = false, -- enable/disable inlay hints on start
|
features = {
|
||||||
semantic_tokens = true, -- enable/disable semantic token highlighting
|
autoformat = true, -- enable or disable auto formatting on start
|
||||||
},
|
codelens = true, -- enable/disable codelens refresh on start
|
||||||
-- customize lsp formatting options
|
inlay_hints = false, -- enable/disable inlay hints on start
|
||||||
formatting = {
|
semantic_tokens = true, -- enable/disable semantic token highlighting
|
||||||
-- control auto formatting on save
|
|
||||||
format_on_save = {
|
|
||||||
enabled = true, -- enable or disable format on save globally
|
|
||||||
allow_filetypes = { -- enable format on save for specified filetypes only
|
|
||||||
-- "go",
|
|
||||||
"c",
|
|
||||||
"cpp",
|
|
||||||
"cs",
|
|
||||||
"gdscript",
|
|
||||||
"h",
|
|
||||||
"javascript",
|
|
||||||
"jsx",
|
|
||||||
"lua",
|
|
||||||
"nix",
|
|
||||||
"rust",
|
|
||||||
"svelte",
|
|
||||||
"tsx",
|
|
||||||
"typescript",
|
|
||||||
"vue",
|
|
||||||
},
|
|
||||||
ignore_filetypes = { -- disable format on save for specified filetypes
|
|
||||||
-- "python",
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
disabled = { -- disable formatting capabilities for the listed language servers
|
-- customize lsp formatting options
|
||||||
-- disable lua_ls formatting capability if you want to use StyLua to format your lua code
|
formatting = {
|
||||||
-- "lua_ls",
|
-- control auto formatting on save
|
||||||
},
|
format_on_save = {
|
||||||
timeout_ms = 1000, -- default format timeout
|
enabled = true, -- enable or disable format on save globally
|
||||||
-- filter = function(client) -- fully override the default formatting function
|
allow_filetypes = { -- enable format on save for specified filetypes only
|
||||||
-- return true
|
-- "go",
|
||||||
-- end
|
"c",
|
||||||
},
|
"cpp",
|
||||||
-- enable servers that you already have installed without mason
|
"cs",
|
||||||
servers = {
|
"gdscript",
|
||||||
"basedpyright",
|
"h",
|
||||||
"clangd",
|
"javascript",
|
||||||
"cmake",
|
"jsx",
|
||||||
--"csharp_ls", Testing roslyn.nvim
|
"lua",
|
||||||
"cssls",
|
"nix",
|
||||||
"denols",
|
"rust",
|
||||||
"eslint",
|
"svelte",
|
||||||
"gdscript",
|
"tsx",
|
||||||
"html",
|
"typescript",
|
||||||
"jsonls",
|
"vue",
|
||||||
"lua_ls",
|
},
|
||||||
"marksman",
|
ignore_filetypes = { -- disable format on save for specified filetypes
|
||||||
"nixd",
|
-- "python",
|
||||||
"rust_analyzer",
|
|
||||||
"svelte",
|
|
||||||
"taplo",
|
|
||||||
"volar",
|
|
||||||
"vtsls",
|
|
||||||
"yamlls",
|
|
||||||
},
|
|
||||||
-- customize language server configuration options passed to `lspconfig`
|
|
||||||
---@diagnostic disable: missing-fields
|
|
||||||
config = {
|
|
||||||
-- clangd = { capabilities = { offsetEncoding = "utf-8" } },
|
|
||||||
---@type lspconfig.Config
|
|
||||||
nixd = {
|
|
||||||
settings = {
|
|
||||||
nixd = {
|
|
||||||
nixpkgs = {
|
|
||||||
expr = "import (builtins.getFlake ({location})).inputs.nixpkgs { }",
|
|
||||||
},
|
|
||||||
options = {
|
|
||||||
nixos = {
|
|
||||||
expr = '(builtins.getFlake ("{location}")).nixosConfigurations.{hostname}.options',
|
|
||||||
},
|
|
||||||
home_manager = {
|
|
||||||
expr =
|
|
||||||
'(builtins.getFlake ("{location}")).nixosConfigurations.{hostname}.options.home-manager.users.type.getSubOptions []',
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
disabled = { -- disable formatting capabilities for the listed language servers
|
||||||
|
-- disable lua_ls formatting capability if you want to use StyLua to format your lua code
|
||||||
|
-- "lua_ls",
|
||||||
|
},
|
||||||
|
timeout_ms = 1000, -- default format timeout
|
||||||
|
-- filter = function(client) -- fully override the default formatting function
|
||||||
|
-- return true
|
||||||
|
-- end
|
||||||
},
|
},
|
||||||
---@type lspconfig.Config
|
-- enable servers that you already have installed without mason
|
||||||
vtsls = {
|
servers = {
|
||||||
filetypes = { "typescript", "javascript", "javascriptreact", "typescriptreact", "vue" },
|
"basedpyright",
|
||||||
settings = {
|
"clangd",
|
||||||
vtsls = {
|
"cmake",
|
||||||
tsserver = {
|
--"csharp_ls", Testing roslyn.nvim
|
||||||
globalPlugins = {
|
"cssls",
|
||||||
{
|
"denols",
|
||||||
name = "@vue/typescript-plugin",
|
"eslint",
|
||||||
location = "{pkgs.vue-language-server}/lib/node_modules/@vue/language-server",
|
"gdscript",
|
||||||
languages = { "vue" },
|
"html",
|
||||||
configNamespace = "typescript",
|
"jsonls",
|
||||||
enableForWorkspaceTypeScriptVersions = true,
|
"lua_ls",
|
||||||
|
"marksman",
|
||||||
|
"nixd",
|
||||||
|
"rust_analyzer",
|
||||||
|
"svelte",
|
||||||
|
"taplo",
|
||||||
|
"volar",
|
||||||
|
"vtsls",
|
||||||
|
"yamlls",
|
||||||
|
},
|
||||||
|
-- customize language server configuration options passed to `lspconfig`
|
||||||
|
---@diagnostic disable: missing-fields
|
||||||
|
config = {
|
||||||
|
-- clangd = { capabilities = { offsetEncoding = "utf-8" } },
|
||||||
|
---@type lspconfig.Config
|
||||||
|
nixd = {
|
||||||
|
settings = {
|
||||||
|
nixd = {
|
||||||
|
nixpkgs = {
|
||||||
|
expr = "import (builtins.getFlake ({location})).inputs.nixpkgs { }",
|
||||||
|
},
|
||||||
|
options = {
|
||||||
|
nixos = {
|
||||||
|
expr = '(builtins.getFlake ("{location}")).nixosConfigurations.{hostname}.options',
|
||||||
|
},
|
||||||
|
home_manager = {
|
||||||
|
expr =
|
||||||
|
'(builtins.getFlake ("{location}")).nixosConfigurations.{hostname}.options.home-manager.users.type.getSubOptions []',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
---@type lspconfig.Config
|
||||||
---@type lspconfig.Config
|
vtsls = {
|
||||||
rust_analyzer = {
|
filetypes = { "typescript", "javascript", "javascriptreact", "typescriptreact", "vue" },
|
||||||
settings = {
|
settings = {
|
||||||
["rust-analyzer"] = {
|
vtsls = {
|
||||||
cargo = {
|
tsserver = {
|
||||||
extraEnv = { CARGO_PROFILE_RUST_ANALYZER_INHERITS = "dev" },
|
globalPlugins = {
|
||||||
extraArgs = { "--profile", "rust-analyzer" },
|
{
|
||||||
|
name = "@vue/typescript-plugin",
|
||||||
|
location = vim.fn.get_nix_store "vue-language-server"
|
||||||
|
.. "/lib/node_modules/@vue/language-server",
|
||||||
|
languages = { "vue" },
|
||||||
|
configNamespace = "typescript",
|
||||||
|
enableForWorkspaceTypeScriptVersions = true,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
},
|
},
|
||||||
check = { command = "check", extraArgs = {} },
|
},
|
||||||
|
},
|
||||||
|
---@type lspconfig.Config
|
||||||
|
rust_analyzer = {
|
||||||
|
settings = {
|
||||||
|
["rust-analyzer"] = {
|
||||||
|
cargo = {
|
||||||
|
extraEnv = { CARGO_PROFILE_RUST_ANALYZER_INHERITS = "dev" },
|
||||||
|
extraArgs = { "--profile", "rust-analyzer" },
|
||||||
|
},
|
||||||
|
check = { command = "check", extraArgs = {} },
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
---@type lspconfig.Config
|
||||||
|
html = {
|
||||||
|
filetypes = { "html", "templ", "razor" },
|
||||||
|
},
|
||||||
|
},
|
||||||
|
-- customize how language servers are attached
|
||||||
|
handlers = {
|
||||||
|
-- a function without a key is simply the default handler, functions take two parameters, the server name and the configured options table for that server
|
||||||
|
-- function(server, opts) require("lspconfig")[server].setup(opts) end
|
||||||
|
|
||||||
|
-- the key is the server that is being setup with `lspconfig`
|
||||||
|
-- rust_analyzer = false, -- setting a handler to false will disable the set up of that language server
|
||||||
|
-- pyright = function(_, opts) require("lspconfig").pyright.setup(opts) end -- or a custom handler function can be passed
|
||||||
|
},
|
||||||
|
-- Configure buffer local auto commands to add when attaching a language server
|
||||||
|
autocmds = {
|
||||||
|
-- first key is the `augroup` to add the auto commands to (:h augroup)
|
||||||
|
lsp_document_highlight = {
|
||||||
|
-- Optional condition to create/delete auto command group
|
||||||
|
-- can either be a string of a client capability or a function of `fun(client, bufnr): boolean`
|
||||||
|
-- condition will be resolved for each client on each execution and if it ever fails for all clients,
|
||||||
|
-- the auto commands will be deleted for that buffer
|
||||||
|
cond = "textDocument/documentHighlight",
|
||||||
|
-- cond = function(client, bufnr) return client.name == "lua_ls" end,
|
||||||
|
-- list of auto commands to set
|
||||||
|
{
|
||||||
|
-- events to trigger
|
||||||
|
event = { "CursorHold", "CursorHoldI" },
|
||||||
|
-- the rest of the autocmd options (:h nvim_create_autocmd)
|
||||||
|
desc = "Document Highlighting",
|
||||||
|
callback = function()
|
||||||
|
vim.lsp.buf.document_highlight()
|
||||||
|
end,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
event = { "CursorMoved", "CursorMovedI", "BufLeave" },
|
||||||
|
desc = "Document Highlighting Clear",
|
||||||
|
callback = function()
|
||||||
|
vim.lsp.buf.clear_references()
|
||||||
|
end,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
---@type lspconfig.Config
|
-- mappings to be set up on attaching of a language server
|
||||||
html = {
|
mappings = {
|
||||||
filetypes = { "html", "templ", "razor" },
|
n = {
|
||||||
|
gl = {
|
||||||
|
function()
|
||||||
|
vim.diagnostic.open_float()
|
||||||
|
end,
|
||||||
|
desc = "Hover diagnostics",
|
||||||
|
},
|
||||||
|
-- a `cond` key can provided as the string of a server capability to be required to attach, or a function with `client` and `bufnr` parameters from the `on_attach` that returns a boolean
|
||||||
|
-- gD = {
|
||||||
|
-- function() vim.lsp.buf.declaration() end,
|
||||||
|
-- desc = "Declaration of current symbol",
|
||||||
|
-- cond = "textDocument/declaration",
|
||||||
|
-- },
|
||||||
|
-- ["<Leader>uY"] = {
|
||||||
|
-- function() require("astrolsp.toggles").buffer_semantic_tokens() end,
|
||||||
|
-- desc = "Toggle LSP semantic highlight (buffer)",
|
||||||
|
-- cond = function(client) return client.server_capabilities.semanticTokensProvider and vim.lsp.semantic_tokens end,
|
||||||
|
-- },
|
||||||
|
},
|
||||||
},
|
},
|
||||||
},
|
-- A custom `on_attach` function to be run after the default `on_attach` function
|
||||||
-- customize how language servers are attached
|
-- takes two parameters `client` and `bufnr` (`:h lspconfig-setup`)
|
||||||
handlers = {
|
on_attach = function(client, bufnr)
|
||||||
-- a function without a key is simply the default handler, functions take two parameters, the server name and the configured options table for that server
|
-- this would disable semanticTokensProvider for all clients
|
||||||
-- function(server, opts) require("lspconfig")[server].setup(opts) end
|
-- client.server_capabilities.semanticTokensProvider = nil
|
||||||
|
end,
|
||||||
|
}
|
||||||
|
|
||||||
-- the key is the server that is being setup with `lspconfig`
|
opts = vim.tbl_deep_extend("force", opts, lsp_options)
|
||||||
-- rust_analyzer = false, -- setting a handler to false will disable the set up of that language server
|
|
||||||
-- pyright = function(_, opts) require("lspconfig").pyright.setup(opts) end -- or a custom handler function can be passed
|
return opts
|
||||||
},
|
end,
|
||||||
-- Configure buffer local auto commands to add when attaching a language server
|
|
||||||
autocmds = {
|
|
||||||
-- first key is the `augroup` to add the auto commands to (:h augroup)
|
|
||||||
lsp_document_highlight = {
|
|
||||||
-- Optional condition to create/delete auto command group
|
|
||||||
-- can either be a string of a client capability or a function of `fun(client, bufnr): boolean`
|
|
||||||
-- condition will be resolved for each client on each execution and if it ever fails for all clients,
|
|
||||||
-- the auto commands will be deleted for that buffer
|
|
||||||
cond = "textDocument/documentHighlight",
|
|
||||||
-- cond = function(client, bufnr) return client.name == "lua_ls" end,
|
|
||||||
-- list of auto commands to set
|
|
||||||
{
|
|
||||||
-- events to trigger
|
|
||||||
event = { "CursorHold", "CursorHoldI" },
|
|
||||||
-- the rest of the autocmd options (:h nvim_create_autocmd)
|
|
||||||
desc = "Document Highlighting",
|
|
||||||
callback = function()
|
|
||||||
vim.lsp.buf.document_highlight()
|
|
||||||
end,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
event = { "CursorMoved", "CursorMovedI", "BufLeave" },
|
|
||||||
desc = "Document Highlighting Clear",
|
|
||||||
callback = function()
|
|
||||||
vim.lsp.buf.clear_references()
|
|
||||||
end,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
-- mappings to be set up on attaching of a language server
|
|
||||||
mappings = {
|
|
||||||
n = {
|
|
||||||
gl = {
|
|
||||||
function()
|
|
||||||
vim.diagnostic.open_float()
|
|
||||||
end,
|
|
||||||
desc = "Hover diagnostics",
|
|
||||||
},
|
|
||||||
-- a `cond` key can provided as the string of a server capability to be required to attach, or a function with `client` and `bufnr` parameters from the `on_attach` that returns a boolean
|
|
||||||
-- gD = {
|
|
||||||
-- function() vim.lsp.buf.declaration() end,
|
|
||||||
-- desc = "Declaration of current symbol",
|
|
||||||
-- cond = "textDocument/declaration",
|
|
||||||
-- },
|
|
||||||
-- ["<Leader>uY"] = {
|
|
||||||
-- function() require("astrolsp.toggles").buffer_semantic_tokens() end,
|
|
||||||
-- desc = "Toggle LSP semantic highlight (buffer)",
|
|
||||||
-- cond = function(client) return client.server_capabilities.semanticTokensProvider and vim.lsp.semantic_tokens end,
|
|
||||||
-- },
|
|
||||||
},
|
|
||||||
},
|
|
||||||
-- A custom `on_attach` function to be run after the default `on_attach` function
|
|
||||||
-- takes two parameters `client` and `bufnr` (`:h lspconfig-setup`)
|
|
||||||
on_attach = function(client, bufnr)
|
|
||||||
-- this would disable semanticTokensProvider for all clients
|
|
||||||
-- client.server_capabilities.semanticTokensProvider = nil
|
|
||||||
end,
|
|
||||||
},
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,9 @@
|
||||||
|
---@type LazySpec
|
||||||
|
return {
|
||||||
|
"wizardlink/nix-store.nvim",
|
||||||
|
priority = 999999,
|
||||||
|
lazy = false,
|
||||||
|
opts = {
|
||||||
|
allow_unfree = true,
|
||||||
|
},
|
||||||
|
}
|
|
@ -53,9 +53,7 @@ return {
|
||||||
null_ls.builtins.formatting.nixfmt,
|
null_ls.builtins.formatting.nixfmt,
|
||||||
null_ls.builtins.formatting.stylua,
|
null_ls.builtins.formatting.stylua,
|
||||||
--deno_fmt,
|
--deno_fmt,
|
||||||
null_ls.builtins.formatting.prettierd.with {
|
null_ls.builtins.formatting.prettierd,
|
||||||
extra_filetypes = { "razor" },
|
|
||||||
},
|
|
||||||
|
|
||||||
null_ls.builtins.code_actions.statix,
|
null_ls.builtins.code_actions.statix,
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,84 @@
|
||||||
|
---@type LazySpec
|
||||||
|
return {
|
||||||
|
"mfussenegger/nvim-dap",
|
||||||
|
config = function()
|
||||||
|
local dap = require "dap"
|
||||||
|
|
||||||
|
---@type dap.Adapter
|
||||||
|
dap.adapters.codelldb = {
|
||||||
|
port = "${port}",
|
||||||
|
type = "server",
|
||||||
|
executable = {
|
||||||
|
command = "codelldb",
|
||||||
|
args = { "--port", "${port}" },
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
---@type dap.Configuration[]
|
||||||
|
dap.configurations.rust = {
|
||||||
|
{
|
||||||
|
name = "Launch file",
|
||||||
|
type = "codelldb",
|
||||||
|
request = "launch",
|
||||||
|
program = function()
|
||||||
|
return vim.fn.input("Path to executable: ", vim.fn.getcwd() .. "/", "file")
|
||||||
|
end,
|
||||||
|
cwd = "${workspaceFolder}",
|
||||||
|
stopOnEntry = false,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
---@type dap.Adapter
|
||||||
|
dap.adapters.cppdbg = {
|
||||||
|
id = "cppdbg",
|
||||||
|
type = "executable",
|
||||||
|
command = vim.fn.get_nix_store "vscode-extensions.ms-vscode.cpptools"
|
||||||
|
.. "/share/vscode/extensions/ms-vscode.cpptools/debugAdapters/bin/OpenDebugAD7",
|
||||||
|
}
|
||||||
|
|
||||||
|
---@type dap.Configuration[]
|
||||||
|
dap.configurations.cpp = {
|
||||||
|
{
|
||||||
|
name = "Launch file",
|
||||||
|
type = "cppdbg",
|
||||||
|
request = "launch",
|
||||||
|
program = function()
|
||||||
|
return vim.fn.input("Path to executable: ", vim.fn.getcwd() .. "/", "file")
|
||||||
|
end,
|
||||||
|
cwd = "${workspaceFolder}",
|
||||||
|
stopAtEntry = true,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name = "Attach to gdbserver :1234",
|
||||||
|
type = "cppdbg",
|
||||||
|
request = "launch",
|
||||||
|
MIMode = "gdb",
|
||||||
|
miDebuggerServerAddress = "localhost:1234",
|
||||||
|
miDebuggerPath = "/usr/bin/gdb",
|
||||||
|
cwd = "${workspaceFolder}",
|
||||||
|
program = function()
|
||||||
|
return vim.fn.input("Path to executable: ", vim.fn.getcwd() .. "/", "file")
|
||||||
|
end,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
dap.configurations.c = dap.configurations.cpp
|
||||||
|
|
||||||
|
---@type dap.Adapter
|
||||||
|
dap.adapters.godot = {
|
||||||
|
type = "server",
|
||||||
|
host = "127.0.0.1",
|
||||||
|
port = 6006,
|
||||||
|
}
|
||||||
|
|
||||||
|
---@type dap.Configuration[]
|
||||||
|
dap.configurations.gdscript = {
|
||||||
|
{
|
||||||
|
name = "Launch scene",
|
||||||
|
type = "godot",
|
||||||
|
request = "launch",
|
||||||
|
project = "${workspaceFolder}",
|
||||||
|
scene = "current",
|
||||||
|
},
|
||||||
|
}
|
||||||
|
end,
|
||||||
|
}
|
|
@ -7,16 +7,18 @@ return {
|
||||||
dependencies = {
|
dependencies = {
|
||||||
{
|
{
|
||||||
"tris203/rzls.nvim",
|
"tris203/rzls.nvim",
|
||||||
config = function()
|
opts = function(_, opts)
|
||||||
---@diagnostic disable-next-line: missing-fields
|
opts = {
|
||||||
require("rzls").setup {
|
capabilities = vim.lsp.protocol.make_client_capabilities(),
|
||||||
path = vim.fn.getnixpath "rzls" .. "/bin/rzls",
|
path = vim.fn.get_nix_store "rzls" .. "/bin/rzls",
|
||||||
}
|
}
|
||||||
|
|
||||||
|
return opts
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
opts = function(_, opts)
|
opts = function(_, opts)
|
||||||
local rzlspath = vim.fn.getnixpath "rzls"
|
local rzlspath = vim.fn.get_nix_store "rzls"
|
||||||
require("roslyn.config").get()
|
require("roslyn.config").get()
|
||||||
|
|
||||||
opts = {
|
opts = {
|
||||||
|
|
16
modules/home-manager/programs/neovim/lua/polish.lua
Normal file
16
modules/home-manager/programs/neovim/lua/polish.lua
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
-- This will run last in the setup process and is a good place to configure
|
||||||
|
-- things like custom filetypes. This just pure lua so anything that doesn't
|
||||||
|
-- fit in the normal config locations above can go here
|
||||||
|
|
||||||
|
-- Set up custom filetypes
|
||||||
|
vim.filetype.add {
|
||||||
|
extension = {
|
||||||
|
foo = "fooscript",
|
||||||
|
},
|
||||||
|
filename = {
|
||||||
|
["Foofile"] = "fooscript",
|
||||||
|
},
|
||||||
|
pattern = {
|
||||||
|
["~/%.config/foo/.*"] = "fooscript",
|
||||||
|
},
|
||||||
|
}
|
31
modules/home-manager/programs/neovim/lua/util.lua
Normal file
31
modules/home-manager/programs/neovim/lua/util.lua
Normal file
|
@ -0,0 +1,31 @@
|
||||||
|
--- Helper function to allow me to run commands grabbed
|
||||||
|
--- by the current selection.
|
||||||
|
--- @param isLua boolean
|
||||||
|
--- @return string
|
||||||
|
vim.fn.runcmdonmark = function(isLua)
|
||||||
|
local beginRow, beginCol = unpack(vim.api.nvim_buf_get_mark(0, "<"))
|
||||||
|
local endRow, endCol = unpack(vim.api.nvim_buf_get_mark(0, ">"))
|
||||||
|
|
||||||
|
if beginRow == nil or beginCol == nil or endRow == nil or endCol == nil then
|
||||||
|
return ""
|
||||||
|
end
|
||||||
|
|
||||||
|
local text = table.concat(
|
||||||
|
vim.tbl_map(function(incoming)
|
||||||
|
return vim.trim(incoming)
|
||||||
|
end, vim.api.nvim_buf_get_text(0, beginRow - 1, beginCol, endRow - 1, endCol + 1, {})),
|
||||||
|
" "
|
||||||
|
)
|
||||||
|
|
||||||
|
vim.notify("Running expression: " .. text, vim.log.levels.INFO)
|
||||||
|
|
||||||
|
return vim.api.nvim_cmd(
|
||||||
|
vim.api.nvim_parse_cmd((isLua == true and ":lua " or "") .. text, {}) --[[@as vim.api.keyset.cmd]],
|
||||||
|
{}
|
||||||
|
)
|
||||||
|
end
|
||||||
|
|
||||||
|
--- Register the function as a command as well, to facilitate things.
|
||||||
|
vim.api.nvim_create_user_command("RunCmdOnMark", function(opts)
|
||||||
|
vim.fn.runcmdonmark((opts.args == "v:false" or opts.args == "false") and false or true)
|
||||||
|
end, { range = true, nargs = "?" })
|
|
@ -1,162 +0,0 @@
|
||||||
-- This will run last in the setup process and is a good place to configure
|
|
||||||
-- things like custom filetypes. This just pure lua so anything that doesn't
|
|
||||||
-- fit in the normal config locations above can go here
|
|
||||||
|
|
||||||
-- Set up custom filetypes
|
|
||||||
vim.filetype.add {
|
|
||||||
extension = {
|
|
||||||
foo = "fooscript",
|
|
||||||
},
|
|
||||||
filename = {
|
|
||||||
["Foofile"] = "fooscript",
|
|
||||||
},
|
|
||||||
pattern = {
|
|
||||||
["~/%.config/foo/.*"] = "fooscript",
|
|
||||||
},
|
|
||||||
}
|
|
||||||
|
|
||||||
--- Define PackageOutput
|
|
||||||
--- @enum PackageOutput
|
|
||||||
local PACKAGEOUTPUT = {
|
|
||||||
out = 0,
|
|
||||||
lib = 1,
|
|
||||||
}
|
|
||||||
|
|
||||||
--- Get the store path of a package
|
|
||||||
--- @param packagename NixSearchExceptions | string
|
|
||||||
--- @param packageoutput PackageOutput?
|
|
||||||
--- @return string | nil
|
|
||||||
vim.fn.getnixpath = function(packagename, packageoutput)
|
|
||||||
---@enum (key) NixSearchExceptions
|
|
||||||
local exceptions = {}
|
|
||||||
|
|
||||||
return vim.split(
|
|
||||||
vim.api.nvim_cmd(
|
|
||||||
vim.api.nvim_parse_cmd(
|
|
||||||
string.format(
|
|
||||||
"silent !nix eval --raw --expr 'with import <nixpkgs> { }; (%s).%s' --impure",
|
|
||||||
exceptions[packagename] or packagename,
|
|
||||||
(packageoutput == PACKAGEOUTPUT.out or packageoutput == nil) and "outPath"
|
|
||||||
or string.format("lib.getLib %s", packagename)
|
|
||||||
),
|
|
||||||
{}
|
|
||||||
) --[[@as vim.api.keyset.cmd]],
|
|
||||||
{
|
|
||||||
output = true,
|
|
||||||
}
|
|
||||||
),
|
|
||||||
"\n"
|
|
||||||
)[3]
|
|
||||||
end
|
|
||||||
|
|
||||||
--- Helper function to allow me to run commands grabbed
|
|
||||||
--- by the current selection.
|
|
||||||
--- @param isLua boolean
|
|
||||||
--- @return string
|
|
||||||
vim.fn.runcmdonmark = function(isLua)
|
|
||||||
local beginRow, beginCol = unpack(vim.api.nvim_buf_get_mark(0, "<"))
|
|
||||||
local endRow, endCol = unpack(vim.api.nvim_buf_get_mark(0, ">"))
|
|
||||||
|
|
||||||
if beginRow == nil or beginCol == nil or endRow == nil or endCol == nil then
|
|
||||||
return ""
|
|
||||||
end
|
|
||||||
|
|
||||||
local text = table.concat(
|
|
||||||
vim.tbl_map(function(incoming)
|
|
||||||
return vim.trim(incoming)
|
|
||||||
end, vim.api.nvim_buf_get_text(0, beginRow - 1, beginCol, endRow - 1, endCol + 1, {})),
|
|
||||||
" "
|
|
||||||
)
|
|
||||||
|
|
||||||
vim.notify("Running expression: " .. text, vim.log.levels.INFO)
|
|
||||||
|
|
||||||
return vim.api.nvim_cmd(
|
|
||||||
vim.api.nvim_parse_cmd((isLua == true and ":lua " or "") .. text, {}) --[[@as vim.api.keyset.cmd]],
|
|
||||||
{}
|
|
||||||
)
|
|
||||||
end
|
|
||||||
|
|
||||||
--- Register the function as a command as well, to facilitate things.
|
|
||||||
vim.api.nvim_create_user_command("RunCmdOnMark", function(opts)
|
|
||||||
vim.fn.runcmdonmark((opts.args == "v:false" or opts.args == "false") and false or true)
|
|
||||||
end, { range = true, nargs = "?" })
|
|
||||||
|
|
||||||
local dap = require "dap"
|
|
||||||
|
|
||||||
---@type dap.Adapter
|
|
||||||
dap.adapters.codelldb = {
|
|
||||||
port = "${port}",
|
|
||||||
type = "server",
|
|
||||||
executable = {
|
|
||||||
command = "codelldb",
|
|
||||||
args = { "--port", "${port}" },
|
|
||||||
},
|
|
||||||
}
|
|
||||||
|
|
||||||
---@type dap.Adapter
|
|
||||||
dap.adapters.cppdbg = {
|
|
||||||
id = "cppdbg",
|
|
||||||
type = "executable",
|
|
||||||
command =
|
|
||||||
"{pkgs.vscode-extensions.ms-vscode.cpptools}/share/vscode/extensions/ms-vscode.cpptools/debugAdapters/bin/OpenDebugAD7",
|
|
||||||
}
|
|
||||||
|
|
||||||
---@type dap.Adapter
|
|
||||||
dap.adapters.godot = {
|
|
||||||
type = "server",
|
|
||||||
host = "127.0.0.1",
|
|
||||||
port = 6006,
|
|
||||||
}
|
|
||||||
|
|
||||||
---@type dap.Configuration[]
|
|
||||||
dap.configurations.rust = {
|
|
||||||
{
|
|
||||||
name = "Launch file",
|
|
||||||
type = "codelldb",
|
|
||||||
request = "launch",
|
|
||||||
program = function()
|
|
||||||
return vim.fn.input("Path to executable: ", vim.fn.getcwd() .. "/", "file")
|
|
||||||
end,
|
|
||||||
cwd = "${workspaceFolder}",
|
|
||||||
stopOnEntry = false,
|
|
||||||
},
|
|
||||||
}
|
|
||||||
|
|
||||||
---@type dap.Configuration[]
|
|
||||||
dap.configurations.cpp = {
|
|
||||||
{
|
|
||||||
name = "Launch file",
|
|
||||||
type = "cppdbg",
|
|
||||||
request = "launch",
|
|
||||||
program = function()
|
|
||||||
return vim.fn.input("Path to executable: ", vim.fn.getcwd() .. "/", "file")
|
|
||||||
end,
|
|
||||||
cwd = "${workspaceFolder}",
|
|
||||||
stopAtEntry = true,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name = "Attach to gdbserver :1234",
|
|
||||||
type = "cppdbg",
|
|
||||||
request = "launch",
|
|
||||||
MIMode = "gdb",
|
|
||||||
miDebuggerServerAddress = "localhost:1234",
|
|
||||||
miDebuggerPath = "/usr/bin/gdb",
|
|
||||||
cwd = "${workspaceFolder}",
|
|
||||||
program = function()
|
|
||||||
return vim.fn.input("Path to executable: ", vim.fn.getcwd() .. "/", "file")
|
|
||||||
end,
|
|
||||||
},
|
|
||||||
}
|
|
||||||
|
|
||||||
dap.configurations.c = dap.configurations.cpp
|
|
||||||
|
|
||||||
---@type dap.Configuration[]
|
|
||||||
dap.configurations.gdscript = {
|
|
||||||
{
|
|
||||||
name = "Launch scene",
|
|
||||||
type = "godot",
|
|
||||||
request = "launch",
|
|
||||||
project = "${workspaceFolder}",
|
|
||||||
scene = "current",
|
|
||||||
},
|
|
||||||
}
|
|
|
@ -126,7 +126,6 @@
|
||||||
|
|
||||||
# Enable ollama support
|
# Enable ollama support
|
||||||
ollama.enable = true;
|
ollama.enable = true;
|
||||||
ollama.type = "cpu";
|
|
||||||
};
|
};
|
||||||
|
|
||||||
modules.hyprland = {
|
modules.hyprland = {
|
||||||
|
|
Loading…
Reference in a new issue