nixos/modules/base/vim.nix

904 lines
35 KiB
Nix
Raw Permalink Normal View History

2024-08-05 23:03:59 +02:00
{
nixpkgs-unstable,
pkgs,
...
}: {
2024-07-15 23:57:41 +02:00
# NixOS
# https://wiki.nixos.org/wiki/Neovim
# https://wiki.nixos.org/wiki/Vim
# https://nix-community.github.io/home-manager/options.xhtml#opt-programs.neovim.enable
# https://github.com/nix-community/nixvim
#
# Popular plugins
# https://neovimcraft.com/
# https://dotfyle.com/neovim/plugins/top
# https://github.com/rockerBOO/awesome-neovim
#
# Distros
# https://docs.astronvim.com/
# https://nvchad.com/docs/
# https://www.lazyvim.org/
# https://www.lunarvim.org/docs/
#
# Inspiration
# https://github.com/nvim-lua/kickstart.nvim
home-manager.users.caspervk = {
programs.neovim = {
enable = true;
defaultEditor = true;
viAlias = true;
vimAlias = true;
vimdiffAlias = true;
extraLuaConfig =
/*
lua
*/
''
-- Use <Space> as the leader key
vim.g.mapleader = " "
-- Show (relative) line numbers
vim.opt.number = true
vim.opt.relativenumber = true
-- Highlight the cursor line
vim.opt.cursorline = true
vim.opt.cursorlineopt = {"line", "number"}
-- Don't show the mode ("-- INSERT --") since it's already in the
-- status line (plugin).
vim.opt.showmode = false
-- Preserve undo history across restarts
vim.opt.undofile = true
-- Case-insensitive search -- unless a capital letter is used
vim.opt.ignorecase = true
vim.opt.smartcase = true
-- Always show sign column. Avoids buffer jumping left and right on
-- gitsigns or LSP diagnostics.
vim.opt.signcolumn = "yes"
2024-08-22 22:36:03 +02:00
-- Send CursorHold autocommand event after 100ms (instead of 4000ms
2024-07-15 23:57:41 +02:00
-- by default). Used, among other things, to highlight definitions
-- with treesitter faster.
vim.opt.updatetime = 100
-- Open new splits on the right and below
vim.opt.splitright = true
vim.opt.splitbelow = true
-- Visualise whitespace characters
vim.opt.list = true
vim.opt.listchars = { tab=" ", trail="·", nbsp="" }
2024-08-06 00:43:45 +02:00
-- Better diffs
2024-08-18 18:12:59 +02:00
vim.opt.diffopt:append({"linematch:60", "algorithm:histogram", "indent-heuristic"})
2024-08-18 02:46:03 +02:00
vim.opt.fillchars:append({ diff = "" })
2024-08-06 00:43:45 +02:00
2024-07-15 23:57:41 +02:00
-- Show search-replace preview live
vim.opt.inccommand = "split"
-- Keep a minimum of 10 lines of context above and below the cursor
vim.opt.scrolloff = 10
vim.opt.sidescrolloff = 10
-- Enable spell cheking
vim.opt.spell = true
vim.opt.spelllang = {"en", "da"}
vim.opt.spelloptions = "camel"
-- Set better defaults for <Tab>. The guess-indent plugin will
-- automatically detect indentation style and change these.
vim.opt.tabstop = 4
vim.opt.softtabstop = 4
vim.opt.shiftwidth = 4
vim.opt.expandtab = true
-- Automatically round indent to multiple of 'shiftwidth'
vim.opt.shiftround = true
-- Show statusline at the bottom only, instead of in each window
vim.opt.laststatus = 3
-- Move cursor to the first non-blank of the line on CTRL-D, CTRL-U, G,
-- gg, etc.
vim.opt.startofline = true
-- Keep visual selection after indenting
vim.keymap.set("v", "<", "<gv")
vim.keymap.set("v", ">", ">gv")
-- Use ALT-{PY} to paste and yank from the system clipboard
vim.keymap.set({"n", "v"}, "<M-p>", "\"+p")
vim.keymap.set("n", "<M-P>", "\"+P")
vim.keymap.set({"n", "v"}, "<M-y>", "\"+y")
vim.keymap.set("n", "<M-Y>", "\"+y$")
vim.keymap.set("n", "<M-y><M-y>", "\"+yy")
2024-07-15 23:57:41 +02:00
-- Use CTRL-{JK} to navigate dropdowns, like CTRL-{NP}, in insert and
-- command mode.
vim.keymap.set({"c", "i"}, "<C-j>", "<C-n>")
vim.keymap.set({"c", "i"}, "<C-k>", "<C-p>")
-- Use CTRL-{HJKL} to navigate windows
vim.keymap.set("n", "<C-h>", "<C-w><C-h>")
vim.keymap.set("n", "<C-j>", "<C-w><C-j>")
vim.keymap.set("n", "<C-k>", "<C-w><C-k>")
vim.keymap.set("n", "<C-l>", "<C-w><C-l>")
2024-08-18 02:59:05 +02:00
-- Use ALT-{HL} to navigate tabs
vim.keymap.set("n", "<A-h>", "gT");
vim.keymap.set("n", "<A-l>", "gt");
2024-07-15 23:57:41 +02:00
-- Use <Escape> to clear search highlight. This is normally bound to
-- CTRL-L, but we use that to navigate windows instead.
vim.keymap.set("n", "<Esc>", vim.cmd.noh)
-- Restore cursor position when opening a file
-- https://github.com/neovim/neovim/issues/16339#issuecomment-1457394370
2024-08-25 15:38:01 +02:00
vim.api.nvim_create_autocmd("BufRead", {
2024-07-15 23:57:41 +02:00
callback = function(opts)
2024-08-25 15:38:01 +02:00
vim.api.nvim_create_autocmd("BufWinEnter", {
2024-07-15 23:57:41 +02:00
once = true,
buffer = opts.buf,
callback = function()
local ft = vim.bo[opts.buf].filetype
local last_known_line = vim.api.nvim_buf_get_mark(opts.buf, '"')[1]
if
2024-08-25 15:38:01 +02:00
not (ft:match("commit") and ft:match("rebase"))
2024-07-15 23:57:41 +02:00
and last_known_line > 1
and last_known_line <= vim.api.nvim_buf_line_count(opts.buf)
then
2024-08-25 15:38:01 +02:00
vim.api.nvim_feedkeys([[g`"]], "nx", false)
2024-07-15 23:57:41 +02:00
end
end,
})
end,
})
'';
plugins = with pkgs.vimPlugins; [
# NeoVim dark colorscheme inspired by the colors of the famous painting
# by Katsushika Hokusai.
# https://github.com/rebelot/kanagawa.nvim
{
plugin = kanagawa-nvim;
type = "lua";
config =
2024-08-25 16:23:07 +02:00
# lua
2024-07-15 23:57:41 +02:00
''
require("kanagawa").setup({
2024-08-25 15:38:42 +02:00
theme = "wave",
2024-07-15 23:57:41 +02:00
commentStyle = { italic = false },
keywordStyle = { italic = false },
2024-08-25 15:38:42 +02:00
statementStyle = { bold = false },
2024-07-15 23:57:41 +02:00
dimInactive = true,
colors = {
theme = {
2024-08-25 15:38:42 +02:00
wave = {
syn = {
-- Make control flow keywords more pronounced.
-- statement = colors.theme.syn.special2,
keyword = "#E46876" -- waveRed; same as syn.special2
},
},
2024-07-15 23:57:41 +02:00
all = {
ui = {
-- Don't use a special background for the gutter
bg_gutter = "none",
},
},
},
},
2024-08-25 15:38:42 +02:00
-- https://github.com/rebelot/kanagawa.nvim/blob/master/lua/kanagawa/themes.lua
-- https://github.com/rebelot/kanagawa.nvim/blob/master/lua/kanagawa/highlights/syntax.lua
-- See `:h highlight-groups` and `:h group-name`.
2024-07-15 23:57:41 +02:00
overrides = function(colors)
local theme = colors.theme
return {
2024-08-25 15:38:42 +02:00
-- Show booleans like other special symbols such as 'None'
-- in Python.
Boolean = { fg = theme.syn.special1, bold = false },
2024-08-22 22:34:37 +02:00
-- Transparent Floating Windows
NormalFloat = { bg = "none" },
FloatBorder = { bg = "none" },
FloatTitle = { bg = "none" },
2024-07-15 23:57:41 +02:00
-- Less pronounced cursorline
CursorLine = { bg = theme.ui.bg_p1 },
-- More pronounced window borders
WinSeparator = { fg = theme.ui.nontext },
-- Less pronounced indent lines
IblIndent = { fg = theme.ui.bg_p2 },
IblScope = { fg = theme.ui.whitespace },
}
end,
})
2024-08-25 15:38:42 +02:00
vim.cmd.colorscheme("kanagawa")
2024-07-15 23:57:41 +02:00
'';
}
# Adds file type icons to Vim plugins.
# https://github.com/nvim-tree/nvim-web-devicons
2024-08-25 19:50:49 +02:00
{plugin = nvim-web-devicons;}
2024-07-15 23:57:41 +02:00
# Rearrange window layout using sway-like <Ctrl-Shift-{hjkl}> bindings.
# https://github.com/sindrets/winshift.nvim
{
plugin = winshift-nvim;
type = "lua";
config =
2024-08-25 16:23:07 +02:00
# lua
2024-07-15 23:57:41 +02:00
''
require("winshift").setup({})
vim.keymap.set("n", "<C-S-h>", function() vim.cmd.WinShift("left") end)
vim.keymap.set("n", "<C-S-j>", function() vim.cmd.WinShift("down") end)
vim.keymap.set("n", "<C-S-k>", function() vim.cmd.WinShift("up") end)
vim.keymap.set("n", "<C-S-l>", function() vim.cmd.WinShift("right") end)
'';
}
# Tree sitter is a parsing system that provides improved syntax
# highlighting compared to the default regex-based grammars built into
# Vim.
# https://github.com/nvim-treesitter/nvim-treesitter
# https://github.com/nvim-treesitter/nvim-treesitter/wiki/Extra-modules-and-plugins
{
plugin = nvim-treesitter.withAllGrammars;
type = "lua";
config =
2024-08-25 16:23:07 +02:00
# lua
2024-07-15 23:57:41 +02:00
''
require("nvim-treesitter.configs").setup({
-- Consistent syntax highlighting
highlight = {
enable = true,
},
-- Indentation based on treesitter
indent = {
enable = true,
},
})
'';
}
# Refactor module for nvim-treesitter.
# https://github.com/nvim-treesitter/nvim-treesitter-refactor
{
plugin = nvim-treesitter-refactor;
type = "lua";
config =
2024-08-25 16:23:07 +02:00
# lua
2024-07-15 23:57:41 +02:00
''
require("nvim-treesitter.configs").setup({
refactor = {
-- Highlight definition and usages of the current symbol under
-- the cursor.
highlight_definitions = {
enable = true,
-- Don't redraw (blink) highlight when moving cursor inside a word
clear_on_cursor_move = false,
},
-- Renames the symbol under the cursor within the current scope
-- (and current file).
smart_rename = {
enable = true,
keymaps = {
-- This keymap will be overwritten in LspAttach
smart_rename = "grn",
},
},
-- Provides "go to definition" for the symbol under the cursor,
-- and lists the definitions from the current file.
navigation = {
enable = true,
keymaps = {
-- This keymap will be overwritten in LspAttach
goto_definition = "gd",
},
},
},
})
'';
}
# Code context module for nvim-treesitter.
# https://github.com/nvim-treesitter/nvim-treesitter-context
{
plugin = nvim-treesitter-context;
type = "lua";
config =
2024-08-25 16:23:07 +02:00
# lua
2024-07-15 23:57:41 +02:00
''
require("treesitter-context").setup({
-- Show one line of context at the top of the screen
max_lines = 1,
})
'';
}
# A completion engine plugin for neovim written in Lua. Completion
# sources are installed from external repositories and "sourced".
# https://github.com/hrsh7th/nvim-cmp
2024-08-25 19:51:24 +02:00
{plugin = cmp-buffer;}
{plugin = cmp-buffer;}
2024-08-25 19:50:49 +02:00
{plugin = cmp-nvim-lsp;}
2024-08-25 19:51:24 +02:00
# {plugin = cmp-nvim-lsp-signature-help;}
2024-07-15 23:57:41 +02:00
{
plugin = nvim-cmp;
type = "lua";
config =
2024-08-25 16:23:07 +02:00
# lua
2024-07-15 23:57:41 +02:00
''
local cmp = require("cmp")
2024-08-25 19:51:24 +02:00
local compare = require("cmp.config.compare")
local lsp = require("cmp.types.lsp")
local kind = lsp.CompletionItemKind
local lsp_kind_priorities = {
[kind.Variable] = 1,
[kind.Value] = 2,
[kind.Field] = 3,
[kind.EnumMember] = 4,
[kind.Property] = 5,
[kind.TypeParameter] = 6,
[kind.Method] = 7,
[kind.Module] = 8,
[kind.Function] = 9,
[kind.Constructor] = 10,
[kind.Interface] = 11,
[kind.Class] = 12,
[kind.Struct] = 13,
[kind.Enum] = 14,
[kind.Constant] = 15,
[kind.Unit] = 16,
[kind.Keyword] = 17,
[kind.Snippet] = 18,
[kind.Color] = 19,
[kind.File] = 20,
[kind.Folder] = 21,
[kind.Event] = 22,
[kind.Operator] = 23,
[kind.Reference] = 24,
[kind.Text] = 25,
}
2024-07-15 23:57:41 +02:00
cmp.setup({
2024-08-22 22:36:03 +02:00
experimental = {
ghost_text = true,
2024-07-15 23:57:41 +02:00
},
mapping = cmp.mapping.preset.insert({
-- Use CTRL-{JK} to navigate and CTRL-L to confirm like
-- telescope.
["<C-j>"] = cmp.mapping.select_next_item(),
["<C-k>"] = cmp.mapping.select_prev_item(),
["<C-l>"] = cmp.mapping.confirm({ select = true }),
2024-08-22 22:36:03 +02:00
-- Also confirm with <Tab>
["<Tab>"] = cmp.mapping.confirm({ select = true }),
-- Scroll documentation
2024-07-15 23:57:41 +02:00
["<C-u>"] = cmp.mapping.scroll_docs(-4),
["<C-d>"] = cmp.mapping.scroll_docs(4),
-- Close completion menu
["<C-e>"] = cmp.mapping.abort(),
-- Manually trigger completion dropdown. This is not
-- generally needed because nvim-cmp will display completions
-- whenever it has completion options available.
["<C-Space>"] = cmp.mapping.complete(),
}),
2024-08-25 19:51:24 +02:00
performance = {
max_view_entries = 50, -- default 200
},
sorting = {
-- Comparators should return true when the first entry should
-- come EARLIER than the second entry, or nil if no pairwise
-- ordering preference from the comparator.
comparators = {
compare.offset,
compare.exact,
-- Put items that start with an underline last.
-- https://github.com/lukas-reineke/cmp-under-comparator
function(entry1, entry2)
local _, entry1_under = entry1.completion_item.label:find "^_+"
local _, entry2_under = entry2.completion_item.label:find "^_+"
entry1_under = entry1_under or 0
entry2_under = entry2_under or 0
if entry1_under > entry2_under then
return false
elseif entry1_under < entry2_under then
return true
end
end,
-- Order by LSP kind. Inspired by `compare.kind`:
-- https://github.com/hrsh7th/nvim-cmp/blob/main/lua/cmp/config/compare.lua
function(entry1, entry2)
local kind1 = entry1:get_kind()
local kind2 = entry2:get_kind()
kind1 = lsp_kind_priorities[kind1] or 100
kind2 = lsp_kind_priorities[kind2] or 100
if kind1 ~= kind2 then
local diff = kind1 - kind2
if diff < 0 then
return true
elseif diff > 0 then
return false
end
end
return nil
end,
compare.score,
},
},
2024-07-15 23:57:41 +02:00
sources = cmp.config.sources({
2024-08-25 19:51:24 +02:00
-- https://github.com/hrsh7th/cmp-nvim-lsp-signature-help/issues/35
-- { name = "nvim_lsp_signature_help" },
2024-07-15 23:57:41 +02:00
{ name = "nvim_lsp" },
2024-08-25 19:51:24 +02:00
{ name = "buffer", keyword_length = 4 }, -- don't complete from buffer right away
2024-08-22 22:36:03 +02:00
}),
window = {
completion = cmp.config.window.bordered(),
documentation = cmp.config.window.bordered(),
},
2024-07-15 23:57:41 +02:00
})
-- Add parentheses after selecting function or method item (nvim-autopairs).
-- https://github.com/hrsh7th/nvim-cmp/wiki/Advanced-techniques#add-parentheses-after-selecting-function-or-method-item
local cmp_autopairs = require("nvim-autopairs.completion.cmp")
cmp.event:on(
"confirm_done",
cmp_autopairs.on_confirm_done()
)
'';
}
# Language Server Protocol (LSP). LSP facilitates features like
# go-to-definition, find references, hover, completion, rename, format,
# refactor, etc, using semantic whole-project analysis.
# > :checkhealth lsp
# https://github.com/neovim/nvim-lspconfig
{
plugin = nvim-lspconfig;
type = "lua";
config =
2024-08-25 16:23:07 +02:00
# lua
2024-07-15 23:57:41 +02:00
''
local ts = require("telescope.builtin")
-- The LspAttach event is fired after an LSP client attaches to a buffer.
-- https://neovim.io/doc/user/lsp.html
-- https://microsoft.github.io/language-server-protocol/specifications/specification-current
vim.api.nvim_create_autocmd("LspAttach", {
callback = function(args)
local client = vim.lsp.get_client_by_id(args.data.client_id)
local buf = args.buf
-- Overwrite treesitter-refactor's basic go-to-definition and
-- smart_rename keymaps if supported by the server.
if client.supports_method("textDocument/definition") then
vim.keymap.set("n", "gd", ts.lsp_definitions, { buffer = args.buf })
end
if client.supports_method("textDocument/rename") then
vim.keymap.set("n", "grn", vim.lsp.buf.rename, { buffer = args.buf })
end
end,
})
2024-08-23 00:07:35 +02:00
-- Overwrite signature help defaults
vim.lsp.handlers["textDocument/signatureHelp"] = vim.lsp.with(
vim.lsp.handlers.signature_help, {
-- Show window above cursor to avoid clipping completions menu
anchor_bias = "above",
-- Keep open until leaving insert mode.
-- Default: { CursorMoved, CursorMovedI, InsertCharPre }.
close_events = { "CursorMoved", },
-- Make floating window unfocusable. Allows updating parameter
-- highlight with another <C-s> rather than focusing the window.
focusable = false,
}
)
2024-07-15 23:57:41 +02:00
-- The following keymaps are defined irregardless of the LSP
-- server's capabilities since we would rather receive an error
-- that the action is unsupported by the LSP server instead of doing
-- some other random action.
vim.keymap.set("n", "grr", ts.lsp_references)
vim.keymap.set("n", "gD", vim.lsp.buf.declaration)
vim.keymap.set("n", "gy", vim.lsp.buf.type_definition)
vim.keymap.set("n", "gI", ts.lsp_implementations)
vim.keymap.set("n", "<Leader>gq", vim.lsp.buf.format)
-- TODO: This becomes default in newer neovim?
vim.keymap.set("n", "gra", vim.lsp.buf.code_action)
-- CTRL-S is mapped to signature help in insert mode by default.
-- Add it to normal mode as well.
vim.keymap.set({"i", "n"}, "<C-s>", vim.lsp.buf.signature_help)
-- LSP servers and clients communicate what features they support.
-- By default, neovim does not support everything in the LSP
-- specification. When we add plugins such as nvim-cmp, neovim now
-- has more capabilities, so we must add these to the capabilities
-- that are broadcast to each server.
-- https://github.com/nvim-lua/kickstart.nvim/blob/master/init.lua
local capabilities = vim.lsp.protocol.make_client_capabilities()
capabilities = vim.tbl_deep_extend("force", capabilities, require("cmp_nvim_lsp").default_capabilities())
local lspconfig = require("lspconfig")
-- https://github.com/nix-community/nixd
lspconfig.nixd.setup({
capabilities = capabilities,
settings = {
nixd = {
formatting = {
command = {"${pkgs.alejandra}/bin/alejandra"},
},
},
},
})
2024-08-05 23:03:59 +02:00
-- https://docs.basedpyright.com
lspconfig.basedpyright.setup({
2024-07-15 23:57:41 +02:00
capabilities = capabilities,
settings = {
2024-08-05 23:03:59 +02:00
basedpyright = {
analysis = {
-- https://docs.basedpyright.com/#/configuration?id=diagnostic-settings-defaults
typeCheckingMode = "standard",
2024-07-15 23:57:41 +02:00
},
},
},
})
2024-08-27 22:54:35 +02:00
-- https://github.com/redhat-developer/yaml-language-server
lspconfig.yamlls.setup({
capabilities = capabilities,
settings = {
yaml = {
},
},
})
2024-07-15 23:57:41 +02:00
'';
}
# Telescope is a highly extendable fuzzy finder.
# https://github.com/nvim-telescope/telescope.nvim
# https://github.com/nvim-telescope/telescope.nvim/wiki/Extensions
{
plugin = telescope-nvim;
type = "lua";
config =
2024-08-25 16:23:07 +02:00
# lua
2024-07-15 23:57:41 +02:00
''
local actions = require("telescope.actions")
require("telescope").setup({
defaults = {
mappings = {
i = {
-- Quit telescope directly from insert mode, instead of
-- entering normal mode.
-- https://github.com/nvim-telescope/telescope.nvim/wiki/Configuration-Recipes
["<Esc>"] = actions.close,
-- Use CTRL-{JK} to navigate dropdowns like CTRL-{NP}
["<C-j>"] = actions.move_selection_next,
["<C-k>"] = actions.move_selection_previous,
-- Use CTRL-L to confirm selection
["<C-l>"] = actions.select_default,
},
},
},
2024-08-25 15:40:07 +02:00
extensions = {
-- Use vertical layout to allow enough width for
-- side-by-side diffs.
undo = {
layout_strategy = "vertical",
layout_config = {
preview_height = 0.8,
},
},
},
2024-07-15 23:57:41 +02:00
})
-- Keymaps mostly inspired by the popular distros.
-- NOTE: Some mappings are done conditionally on LspAttach.
-- https://github.com/nvim-telescope/telescope.nvim?tab=readme-ov-file#vim-pickers
local ts = require("telescope.builtin")
vim.keymap.set("n", "<Leader>fb", ts.buffers)
vim.keymap.set("n", "<Leader>fc", ts.commands)
vim.keymap.set("n", "<Leader>fd", ts.diagnostics)
vim.keymap.set("n", "<Leader>fF", function() ts.find_files({hidden=true, no_ignore=true}) end)
vim.keymap.set("n", "<Leader>ff", ts.find_files)
vim.keymap.set("n", "<Leader>fh", ts.help_tags)
vim.keymap.set("n", "<Leader>fk", ts.keymaps)
vim.keymap.set("n", "<Leader>fm", ts.marks)
vim.keymap.set("n", "<Leader>fo", ts.oldfiles)
vim.keymap.set("n", "<Leader>fq", ts.quickfix)
2024-07-15 23:57:41 +02:00
vim.keymap.set("n", "<Leader>fr", ts.registers)
vim.keymap.set("n", "<Leader>fs", ts.lsp_dynamic_workspace_symbols)
2024-07-15 23:57:41 +02:00
vim.keymap.set("n", "<Leader>f/", ts.current_buffer_fuzzy_find)
vim.keymap.set("n", "<Leader>F", ts.resume)
vim.keymap.set("n", "<Leader>fW", function() ts.live_grep({additional_args={"--hidden", "--no-ignore"}}) end)
vim.keymap.set("n", "<Leader>fw", ts.live_grep)
'';
}
# It's suggested to install one native sorter for telescope for better
# performance.
# https://github.com/nvim-telescope/telescope-fzf-native.nvim
{
plugin = telescope-fzf-native-nvim;
type = "lua";
config =
2024-08-25 16:23:07 +02:00
# lua
2024-07-15 23:57:41 +02:00
''
require("telescope").load_extension("fzf")
'';
}
# Replace `vim.ui.select` to Telescope. That means for example that
# neovim core stuff can fill the telescope picker. Example would be lua
# `vim.lsp.buf.code_action()`.
# https://github.com/nvim-telescope/telescope-ui-select.nvim
{
plugin = telescope-ui-select-nvim;
type = "lua";
config =
2024-08-25 16:23:07 +02:00
# lua
2024-07-15 23:57:41 +02:00
''
require("telescope").load_extension("ui-select")
'';
}
2024-08-25 15:40:07 +02:00
# Visualize your undo tree and fuzzy-search changes in it. For those
# days where committing early and often doesn't work out.
# https://github.com/debugloop/telescope-undo.nvim
{
plugin = telescope-undo-nvim;
type = "lua";
config =
2024-08-25 16:23:07 +02:00
# lua
2024-08-25 15:40:07 +02:00
''
local telescope = require("telescope")
telescope.load_extension("undo")
vim.keymap.set("n", "<Leader>fu", telescope.extensions.undo.undo)
'';
}
2024-07-15 23:57:41 +02:00
# Buffer list that lives in the tabline.
# https://github.com/akinsho/bufferline.nvim
{
plugin = bufferline-nvim;
type = "lua";
config =
2024-08-25 16:23:07 +02:00
# lua
2024-07-15 23:57:41 +02:00
''
require("bufferline").setup({})
-- Use <A-j> and <A-k> to go to previous/next buffer
vim.keymap.set("n", "<A-j>", vim.cmd.BufferLineCyclePrev);
vim.keymap.set("n", "<A-k>", vim.cmd.BufferLineCycleNext);
-- Use <A-[1-9]> to select a buffer. <A-9> selects the rightmost
-- buffer like tabs in Firefox.
vim.keymap.set("n", "<A-1>", function() vim.cmd.BufferLineGoToBuffer(1) end);
vim.keymap.set("n", "<A-2>", function() vim.cmd.BufferLineGoToBuffer(2) end);
vim.keymap.set("n", "<A-3>", function() vim.cmd.BufferLineGoToBuffer(3) end);
vim.keymap.set("n", "<A-4>", function() vim.cmd.BufferLineGoToBuffer(4) end);
vim.keymap.set("n", "<A-5>", function() vim.cmd.BufferLineGoToBuffer(5) end);
vim.keymap.set("n", "<A-6>", function() vim.cmd.BufferLineGoToBuffer(6) end);
vim.keymap.set("n", "<A-7>", function() vim.cmd.BufferLineGoToBuffer(7) end);
vim.keymap.set("n", "<A-8>", function() vim.cmd.BufferLineGoToBuffer(8) end);
vim.keymap.set("n", "<A-9>", function() vim.cmd.BufferLineGoToBuffer(-1) end);
-- Use <A-x> to close current buffer
vim.keymap.set("n", "<A-x>", vim.cmd.bd);
'';
}
# Indentation guides.
# https://github.com/lukas-reineke/indent-blankline.nvim
{
plugin = indent-blankline-nvim;
type = "lua";
config =
2024-08-25 16:23:07 +02:00
# lua
2024-07-15 23:57:41 +02:00
''
require("ibl").setup({
indent = {
-- Thinner indent line
char = "",
},
scope = {
-- Don't show start/end of scope horizontal lines
show_start = false,
show_end = false,
},
})
'';
}
# Automatic indentation style detection for Neovim.
# https://github.com/NMAC427/guess-indent.nvim
{
plugin = guess-indent-nvim;
type = "lua";
config =
2024-08-25 16:23:07 +02:00
# lua
2024-07-15 23:57:41 +02:00
''
require("guess-indent").setup({})
'';
}
# A super powerful autopair plugin for Neovim that supports multiple
# characters; automatically closes brackets etc.
# https://github.com/windwp/nvim-ts-autotag
{
plugin = nvim-autopairs;
type = "lua";
config =
2024-08-25 16:23:07 +02:00
# lua
2024-07-15 23:57:41 +02:00
''
require("nvim-autopairs").setup({})
'';
}
# Add/change/delete surrounding delimiter pairs with ease; cs, ds, ys.
# https://github.com/kylechui/nvim-surround
{
plugin = nvim-surround;
type = "lua";
config =
2024-08-25 16:23:07 +02:00
# lua
2024-07-15 23:57:41 +02:00
''
require("nvim-surround").setup({})
'';
}
# Use treesitter to autoclose and autorename html tags.
# https://github.com/windwp/nvim-ts-autotag
{
plugin = nvim-ts-autotag;
type = "lua";
config =
2024-08-25 16:23:07 +02:00
# lua
2024-07-15 23:57:41 +02:00
''
require("nvim-ts-autotag").setup({})
'';
}
2024-08-18 18:12:59 +02:00
# An interactive and powerful Git interface for Neovim, inspired by
# Magit.
# https://github.com/NeogitOrg/neogit
2024-07-15 23:57:41 +02:00
{
2024-08-18 18:12:59 +02:00
plugin = neogit;
2024-07-15 23:57:41 +02:00
type = "lua";
config =
2024-08-25 16:23:07 +02:00
# lua
2024-07-15 23:57:41 +02:00
''
2024-08-18 18:12:59 +02:00
require("neogit").setup({
graph_style = "unicode",
})
vim.keymap.set("n", "<Leader>gg", vim.cmd.Neogit)
2024-07-15 23:57:41 +02:00
'';
}
2024-08-18 18:12:59 +02:00
# Git integration for buffers.
# https://github.com/lewis6991/gitsigns.nvim
2024-08-18 03:03:51 +02:00
{
2024-08-18 18:12:59 +02:00
plugin = gitsigns-nvim;
2024-08-18 03:03:51 +02:00
type = "lua";
config =
2024-08-25 16:23:07 +02:00
# lua
2024-08-18 03:03:51 +02:00
''
2024-08-18 18:12:59 +02:00
require("gitsigns").setup({
-- https://github.com/lewis6991/gitsigns.nvim?tab=readme-ov-file#keymaps
on_attach = function(bufnr)
local gitsigns = require("gitsigns")
local function map(mode, l, r, opts)
opts = opts or {}
opts.buffer = bufnr
vim.keymap.set(mode, l, r, opts)
end
-- Navigation
map("n", "]c", function()
if vim.wo.diff then
vim.cmd.normal({"]c", bang = true})
else
gitsigns.nav_hunk("next")
end
end)
map("n", "[c", function()
if vim.wo.diff then
vim.cmd.normal({"[c", bang = true})
else
gitsigns.nav_hunk("prev")
end
end)
-- Actions
map("n", "<leader>hs", gitsigns.stage_hunk)
map("n", "<leader>hr", gitsigns.reset_hunk)
map("v", "<leader>hs", function() gitsigns.stage_hunk {vim.fn.line("."), vim.fn.line("v")} end)
map("v", "<leader>hr", function() gitsigns.reset_hunk {vim.fn.line("."), vim.fn.line("v")} end)
map("n", "<leader>hS", gitsigns.stage_buffer)
map("n", "<leader>hu", gitsigns.undo_stage_hunk)
map("n", "<leader>hR", gitsigns.reset_buffer)
map("n", "<leader>hp", gitsigns.preview_hunk)
map("n", "<leader>hb", function() gitsigns.blame_line{full=true} end)
map("n", "<leader>tb", gitsigns.toggle_current_line_blame)
map("n", "<leader>hd", gitsigns.diffthis)
map("n", "<leader>hD", function() gitsigns.diffthis("~") end)
map("n", "<leader>td", gitsigns.toggle_deleted)
-- Text object
map({"o", "x"}, "ih", ":<C-U>Gitsigns select_hunk<CR>")
end
})
2024-08-18 03:03:51 +02:00
'';
}
2024-07-15 23:57:41 +02:00
# Single tabpage interface for easily cycling through diffs for all
# modified files for any git rev.
# https://github.com/sindrets/diffview.nvim
{
plugin = diffview-nvim;
type = "lua";
config =
2024-08-25 16:23:07 +02:00
# lua
2024-07-15 23:57:41 +02:00
''
2024-08-07 00:29:16 +02:00
require("diffview").setup({
enhanced_diff_hl = true,
})
2024-07-15 23:57:41 +02:00
vim.keymap.set("n", "<Leader>gd", vim.cmd.DiffviewOpen)
'';
}
# TODO
########################
# A blazing fast and easy to configure statusline written in Lua.
# https://github.com/nvim-lualine/lualine.nvim
{
plugin = lualine-nvim;
type = "lua";
config =
2024-08-25 16:23:07 +02:00
# lua
2024-07-15 23:57:41 +02:00
''
require("lualine").setup({})
'';
}
2024-08-26 00:41:05 +02:00
# A File Explorer For Neovim Written In Lua.
# https://github.com/nvim-tree/nvim-tree.lua
{
plugin = nvim-tree-lua;
type = "lua";
config =
# lua
''
require("nvim-tree").setup({
filters = {
custom = {
"^\\.git",
},
},
})
vim.keymap.set("n", "<Leader>e", vim.cmd.NvimTreeToggle)
'';
}
2024-07-15 23:57:41 +02:00
];
extraPackages = [
2024-08-05 23:03:59 +02:00
nixpkgs-unstable.legacyPackages.${pkgs.system}.basedpyright
2024-07-15 23:57:41 +02:00
pkgs.nixd
2024-08-27 22:54:35 +02:00
pkgs.yaml-language-server
2024-07-15 23:57:41 +02:00
];
extraLuaPackages = ps: [];
extraPython3Packages = ps: [];
# withNodeJs = true;
};
# https://wiki.nixos.org/wiki/Vim#Vim_Spell_Files
home.file.".config/nvim/spell/da.utf-8.spl".source = builtins.fetchurl {
url = "http://ftp.vim.org/vim/runtime/spell/da.utf-8.spl";
sha256 = "0cl9q1ln7y4ihbpgawl3rc86zw8xynq9hg4hl8913dbmpcl2nslj";
};
home.file.".config/nvim/spell/da.utf-8.sug".source = builtins.fetchurl {
url = "http://ftp.vim.org/vim/runtime/spell/da.utf-8.sug";
sha256 = "1pdnp0hq3yll65z6rlmq0l6axvn5450jw5y081vyb4x5850czdxm";
};
};
}