Initial nixos configuration

This commit is contained in:
Marko Korhonen 2024-09-15 21:02:35 +03:00
parent 4e4edec989
commit 74b2ebd884
247 changed files with 206 additions and 36718 deletions

View file

@ -1,30 +0,0 @@
-- Replace much of neovim's default UI
-- with a modern replacement
--- @type LazyPluginSpec
return {
"folke/noice.nvim",
event = "VeryLazy",
dependencies = { "MunifTanjim/nui.nvim", "rcarriga/nvim-notify" },
--- @type NoiceConfig
opts = {
lsp = {
-- override markdown rendering so that **cmp** and other plugins use **Treesitter**
override = {
["vim.lsp.util.convert_input_to_markdown_lines"] = true,
["vim.lsp.util.stylize_markdown"] = true,
["cmp.entry.get_documentation"] = true,
},
},
presets = {
-- add a border to hover docs and signature help
lsp_doc_border = true,
},
},
keys = {
{
desc = "Dismiss notifications",
"<leader>d",
"<cmd>NoiceDismiss<cr>",
},
},
}