blob: 93761dfd9b41e3e43db147443312bfa33b019ad1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
# nixos-config - My current NixOS configuration
#
# Copyright (C) 2025 Benedikt Peetz <benedikt.peetz@b-peetz.de>
# SPDX-License-Identifier: GPL-3.0-or-later
#
# This file is part of my nixos-config.
#
# You should have received a copy of the License along with this program.
# If not, see <https://www.gnu.org/licenses/gpl-3.0.txt>.
{
pkgs,
lib,
config,
...
}: let
cfg = config.soispha.programs.nvim;
in {
home-manager.users.soispha.programs.nixvim = lib.mkIf cfg.enable {
# TODO: package goto-preview though a module
extraConfigLuaPost = ''
${lib.strings.fileContents ./lua/goto-preview.lua}
'';
extraPlugins = [
pkgs.vimPlugins.goto-preview
];
keymaps = [
{
key = "<space>gd";
mode = "n";
action.__raw = "require('goto-preview').goto_preview_definition";
options.desc = "[G]oto [D]efinition";
}
{
key = "<space>gtd";
mode = "n";
action.__raw = "require('goto-preview').goto_preview_type_definition";
options.desc = "[G]oto the [t]ype [D]efinition";
}
{
key = "<space>gi";
mode = "n";
action.__raw = "require('goto-preview').goto_preview_implementation";
options.desc = "[G]oto [I]mplementations";
}
{
key = "<space>gr";
mode = "n";
action.__raw = "require('goto-preview').goto_preview_references";
options.desc = "[G]o to all [R]eferences of the symbol";
}
{
key = "\\<space>";
mode = "n";
action.__raw = "require('goto-preview').close_all_win";
options.desc = "close all preview windows";
}
];
};
}
|