mirror of
https://github.com/NotAShelf/nvf.git
synced 2026-02-04 10:55:50 +00:00
Merge branch 'main' into feat/jinja
This commit is contained in:
commit
96de3676e3
15 changed files with 182 additions and 17 deletions
|
|
@ -13,7 +13,6 @@ trim_trailing_whitespace = true
|
||||||
indent_style = space
|
indent_style = space
|
||||||
indent_size = 2
|
indent_size = 2
|
||||||
trim_trailing_whitespace = false
|
trim_trailing_whitespace = false
|
||||||
max_line_length = 80
|
|
||||||
|
|
||||||
[*.{js,json,nix,yml,yaml,toml}]
|
[*.{js,json,nix,yml,yaml,toml}]
|
||||||
indent_style = space
|
indent_style = space
|
||||||
|
|
|
||||||
|
|
@ -72,6 +72,7 @@ isMaximal: {
|
||||||
extensions.crates-nvim.enable = isMaximal;
|
extensions.crates-nvim.enable = isMaximal;
|
||||||
};
|
};
|
||||||
toml.enable = isMaximal;
|
toml.enable = isMaximal;
|
||||||
|
xml.enable = isMaximal;
|
||||||
|
|
||||||
# Language modules that are not as common.
|
# Language modules that are not as common.
|
||||||
assembly.enable = false;
|
assembly.enable = false;
|
||||||
|
|
|
||||||
|
|
@ -17,6 +17,7 @@ configuring/custom-package.md
|
||||||
configuring/custom-plugins.md
|
configuring/custom-plugins.md
|
||||||
configuring/overriding-plugins.md
|
configuring/overriding-plugins.md
|
||||||
configuring/languages.md
|
configuring/languages.md
|
||||||
|
configuring/keybinds.md
|
||||||
configuring/dags.md
|
configuring/dags.md
|
||||||
configuring/dag-entries.md
|
configuring/dag-entries.md
|
||||||
configuring/autocmds.md
|
configuring/autocmds.md
|
||||||
|
|
|
||||||
38
docs/manual/configuring/keybinds.md
Normal file
38
docs/manual/configuring/keybinds.md
Normal file
|
|
@ -0,0 +1,38 @@
|
||||||
|
# Custom keymaps {#ch-keymaps}
|
||||||
|
|
||||||
|
Some plugin modules provide keymap options for your convenience. If a keymap is
|
||||||
|
not provided by such module options, you may easily register your own custom
|
||||||
|
keymaps via {option}`vim.keymaps`.
|
||||||
|
|
||||||
|
```nix
|
||||||
|
{
|
||||||
|
config.vim.keymaps = [
|
||||||
|
{
|
||||||
|
key = "<leader>m";
|
||||||
|
mode = "n";
|
||||||
|
silent = true;
|
||||||
|
action = ":make<CR>";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
key = "<leader>l";
|
||||||
|
mode = ["n" "x"];
|
||||||
|
silent = true;
|
||||||
|
action = "<cmd>cnext<CR>";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
key = "<leader>k";
|
||||||
|
mode = ["n" "x"];
|
||||||
|
|
||||||
|
# While `lua` is `true`, `action` is expected to be
|
||||||
|
# a valid Lua expression.
|
||||||
|
lua = true;
|
||||||
|
action = ''
|
||||||
|
function()
|
||||||
|
require('foo').do_thing()
|
||||||
|
print('did thing')
|
||||||
|
end
|
||||||
|
'';
|
||||||
|
}
|
||||||
|
];
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
@ -21,3 +21,43 @@ vim.languages.java = {
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## Custom LSP Servers {#ch-custom-lsp-servers}
|
||||||
|
|
||||||
|
Neovim 0.11, in an effort to improve the out-of-the-box experience of Neovim,
|
||||||
|
has introduced a new `vim.lsp` API that can be used to register custom LSP
|
||||||
|
servers with ease. In **nvf**, this translates to the custom `vim.lsp` API that
|
||||||
|
can be used to register servers that are not present in existing language
|
||||||
|
modules.
|
||||||
|
|
||||||
|
The {option}`vim.lsp.servers` submodule can be used to modify existing LSP
|
||||||
|
definitions OR register your own custom LSPs respectively. For example, if you'd
|
||||||
|
like to avoid having NVF pull the LSP packages you may modify the start command
|
||||||
|
to use a string, which will cause the LSP API to discover LSP servers from
|
||||||
|
{env}`PATH`. For example:
|
||||||
|
|
||||||
|
```nix
|
||||||
|
{lib, ...}: {
|
||||||
|
vim.lsp.servers = {
|
||||||
|
# Get `basedpyright-langserver` from PATH, e.g., a dev shell.
|
||||||
|
basedpyright.cmd = lib.mkForce ["basedpyright-langserver" "--stdio"];
|
||||||
|
|
||||||
|
# Define a custom LSP entry using `vim.lsp.servers`:
|
||||||
|
ty = {
|
||||||
|
cmd = lib.mkDefault [(lib.getExe pkgs.ty) "server"];
|
||||||
|
filetypes = ["python"];
|
||||||
|
root_markers = [
|
||||||
|
".git"
|
||||||
|
"pyproject.toml"
|
||||||
|
"setup.cfg"
|
||||||
|
"requirements.txt"
|
||||||
|
"Pipfile"
|
||||||
|
"pyrightconfig.json"
|
||||||
|
];
|
||||||
|
|
||||||
|
# If your LSP accepts custom settings. See `:help lsp-config` for more details
|
||||||
|
# on available fields. This is a freeform field.
|
||||||
|
settings.ty = { /* ... */ };
|
||||||
|
};
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
|
||||||
|
|
@ -14,11 +14,12 @@ vim.pluginOverrides = {
|
||||||
rev = "";
|
rev = "";
|
||||||
hash = "";
|
hash = "";
|
||||||
};
|
};
|
||||||
|
|
||||||
# It's also possible to use a flake input
|
# It's also possible to use a flake input
|
||||||
lazydev-nvim = inputs.lazydev-nvim;
|
lazydev-nvim = inputs.lazydev-nvim;
|
||||||
# Or a local path
|
# Or a local path
|
||||||
lazydev-nvim = ./lazydev;
|
lazydev-nvim = ./lazydev;
|
||||||
# Or a npins pin... etc
|
# Or a npins pin nvfetcher source, etc.
|
||||||
};
|
};
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -132,6 +132,9 @@
|
||||||
|
|
||||||
- Added [sqruff](https://github.com/quarylabs/sqruff) support to `languages.sql`
|
- Added [sqruff](https://github.com/quarylabs/sqruff) support to `languages.sql`
|
||||||
|
|
||||||
|
- Lazy-load `crates.nvim` plugin when using
|
||||||
|
`vim.languages.rust.extensions.crates-nvim.enable`
|
||||||
|
|
||||||
- Added [Pyrefly](https://pyrefly.org/) and [zuban](https://zubanls.com/)
|
- Added [Pyrefly](https://pyrefly.org/) and [zuban](https://zubanls.com/)
|
||||||
support to `languages.python`
|
support to `languages.python`
|
||||||
|
|
||||||
|
|
@ -152,3 +155,13 @@
|
||||||
|
|
||||||
- Added [Selenen](https://github.com/kampfkarren/selene) for more diagnostics in
|
- Added [Selenen](https://github.com/kampfkarren/selene) for more diagnostics in
|
||||||
`languages.lua`.
|
`languages.lua`.
|
||||||
|
|
||||||
|
- Added XML syntax highlighting, LSP support and formatting
|
||||||
|
|
||||||
|
[vagahbond](https://github.com/vagahbond): [codewindow.nvim]:
|
||||||
|
https://github.com/gorbit99/codewindow.nvim
|
||||||
|
|
||||||
|
- Add [codewindow.nvim] plugin in `vim.assistant.codewindow` with `enable` and
|
||||||
|
`setupOpts`
|
||||||
|
|
||||||
|
<!-- vim: set textwidth=80: -->
|
||||||
|
|
|
||||||
8
flake.lock
generated
8
flake.lock
generated
|
|
@ -74,16 +74,16 @@
|
||||||
},
|
},
|
||||||
"nixpkgs": {
|
"nixpkgs": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1768875095,
|
"lastModified": 1769461804,
|
||||||
"narHash": "sha256-dYP3DjiL7oIiiq3H65tGIXXIT1Waiadmv93JS0sS+8A=",
|
"narHash": "sha256-msG8SU5WsBUfVVa/9RPLaymvi5bI8edTavbIq3vRlhI=",
|
||||||
"owner": "nixos",
|
"owner": "nixos",
|
||||||
"repo": "nixpkgs",
|
"repo": "nixpkgs",
|
||||||
"rev": "ed142ab1b3a092c4d149245d0c4126a5d7ea00b0",
|
"rev": "bfc1b8a4574108ceef22f02bafcf6611380c100d",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
"owner": "nixos",
|
"owner": "nixos",
|
||||||
"ref": "nixpkgs-unstable",
|
"ref": "nixos-unstable",
|
||||||
"repo": "nixpkgs",
|
"repo": "nixpkgs",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -122,7 +122,7 @@
|
||||||
systems.url = "github:nix-systems/default";
|
systems.url = "github:nix-systems/default";
|
||||||
|
|
||||||
## Basic Inputs
|
## Basic Inputs
|
||||||
nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
|
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
|
||||||
|
|
||||||
flake-parts = {
|
flake-parts = {
|
||||||
url = "github:hercules-ci/flake-parts";
|
url = "github:hercules-ci/flake-parts";
|
||||||
|
|
|
||||||
|
|
@ -49,4 +49,4 @@ in
|
||||||
"expToLua"
|
"expToLua"
|
||||||
"listToLuaTable"
|
"listToLuaTable"
|
||||||
"attrsetToLuaTable"
|
"attrsetToLuaTable"
|
||||||
] (name: lib.warn "${name} is deprecated use toLuaObject instead" toLuaObject)
|
] (name: builtins.throw "${name} is deprecated use toLuaObject instead")
|
||||||
|
|
|
||||||
|
|
@ -51,6 +51,7 @@ in {
|
||||||
./yaml.nix
|
./yaml.nix
|
||||||
./ruby.nix
|
./ruby.nix
|
||||||
./just.nix
|
./just.nix
|
||||||
|
./xml.nix
|
||||||
|
|
||||||
# This is now a hard deprecation.
|
# This is now a hard deprecation.
|
||||||
(mkRenamedOptionModule ["vim" "languages" "enableLSP"] ["vim" "lsp" "enable"])
|
(mkRenamedOptionModule ["vim" "languages" "enableLSP"] ["vim" "lsp" "enable"])
|
||||||
|
|
|
||||||
|
|
@ -11,7 +11,7 @@
|
||||||
inherit (lib.lists) isList;
|
inherit (lib.lists) isList;
|
||||||
inherit (lib.attrsets) attrNames;
|
inherit (lib.attrsets) attrNames;
|
||||||
inherit (lib.types) bool package str listOf either enum int;
|
inherit (lib.types) bool package str listOf either enum int;
|
||||||
inherit (lib.nvim.lua) expToLua toLuaObject;
|
inherit (lib.nvim.lua) toLuaObject;
|
||||||
inherit (lib.nvim.attrsets) mapListToAttrs;
|
inherit (lib.nvim.attrsets) mapListToAttrs;
|
||||||
inherit (lib.nvim.types) mkGrammarOption mkPluginSetupOption deprecatedSingleOrListOf;
|
inherit (lib.nvim.types) mkGrammarOption mkPluginSetupOption deprecatedSingleOrListOf;
|
||||||
inherit (lib.nvim.dag) entryAfter entryAnywhere;
|
inherit (lib.nvim.dag) entryAfter entryAnywhere;
|
||||||
|
|
@ -169,7 +169,7 @@ in {
|
||||||
server = {
|
server = {
|
||||||
cmd = ${
|
cmd = ${
|
||||||
if isList cfg.lsp.package
|
if isList cfg.lsp.package
|
||||||
then expToLua cfg.lsp.package
|
then toLuaObject cfg.lsp.package
|
||||||
else ''{"${cfg.lsp.package}/bin/rust-analyzer"}''
|
else ''{"${cfg.lsp.package}/bin/rust-analyzer"}''
|
||||||
},
|
},
|
||||||
default_settings = {
|
default_settings = {
|
||||||
|
|
@ -228,10 +228,17 @@ in {
|
||||||
(mkIf cfg.extensions.crates-nvim.enable {
|
(mkIf cfg.extensions.crates-nvim.enable {
|
||||||
vim = mkMerge [
|
vim = mkMerge [
|
||||||
{
|
{
|
||||||
startPlugins = ["crates-nvim"];
|
lazy.plugins.crates-nvim = {
|
||||||
pluginRC.rust-crates = entryAnywhere ''
|
package = "crates-nvim";
|
||||||
require("crates").setup(${toLuaObject cfg.extensions.crates-nvim.setupOpts})
|
setupModule = "crates";
|
||||||
'';
|
setupOpts = cfg.extensions.crates-nvim.setupOpts;
|
||||||
|
event = [
|
||||||
|
{
|
||||||
|
event = "BufRead";
|
||||||
|
pattern = "Cargo.toml";
|
||||||
|
}
|
||||||
|
];
|
||||||
|
};
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
})
|
})
|
||||||
|
|
|
||||||
62
modules/plugins/languages/xml.nix
Normal file
62
modules/plugins/languages/xml.nix
Normal file
|
|
@ -0,0 +1,62 @@
|
||||||
|
{
|
||||||
|
config,
|
||||||
|
pkgs,
|
||||||
|
lib,
|
||||||
|
...
|
||||||
|
}: let
|
||||||
|
inherit (builtins) attrNames;
|
||||||
|
inherit (lib.options) mkOption mkEnableOption;
|
||||||
|
inherit (lib.meta) getExe;
|
||||||
|
inherit (lib.modules) mkIf mkMerge;
|
||||||
|
inherit (lib.types) enum listOf;
|
||||||
|
inherit (lib.nvim.types) mkGrammarOption;
|
||||||
|
inherit (lib.nvim.attrsets) mapListToAttrs;
|
||||||
|
|
||||||
|
cfg = config.vim.languages.xml;
|
||||||
|
|
||||||
|
defaultServers = ["lemminx"];
|
||||||
|
servers = {
|
||||||
|
lemminx = {
|
||||||
|
enable = true;
|
||||||
|
cmd = [
|
||||||
|
(getExe pkgs.lemminx)
|
||||||
|
];
|
||||||
|
filetypes = ["xml"];
|
||||||
|
root_markers = [".git"];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
in {
|
||||||
|
options.vim.languages.xml = {
|
||||||
|
enable = mkEnableOption "XML language support";
|
||||||
|
|
||||||
|
treesitter = {
|
||||||
|
enable = mkEnableOption "XML treesitter" // {default = config.vim.languages.enableTreesitter;};
|
||||||
|
package = mkGrammarOption pkgs "xml";
|
||||||
|
};
|
||||||
|
|
||||||
|
lsp = {
|
||||||
|
enable = mkEnableOption "XML LSP support" // {default = config.vim.lsp.enable;};
|
||||||
|
servers = mkOption {
|
||||||
|
type = listOf (enum (attrNames servers));
|
||||||
|
default = defaultServers;
|
||||||
|
description = "XML LSP server to use";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
config = mkIf cfg.enable (mkMerge [
|
||||||
|
(mkIf cfg.treesitter.enable {
|
||||||
|
vim.treesitter.enable = true;
|
||||||
|
vim.treesitter.grammars = [cfg.treesitter.package];
|
||||||
|
})
|
||||||
|
|
||||||
|
(mkIf cfg.lsp.enable {
|
||||||
|
vim.lsp.servers =
|
||||||
|
mapListToAttrs (name: {
|
||||||
|
inherit name;
|
||||||
|
value = servers.${name};
|
||||||
|
})
|
||||||
|
cfg.lsp.servers;
|
||||||
|
})
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
|
@ -1,6 +1,7 @@
|
||||||
{lib, ...}: let
|
{lib, ...}: let
|
||||||
inherit (lib.options) mkEnableOption;
|
inherit (lib.options) mkEnableOption;
|
||||||
inherit (lib.nvim.binds) mkMappingOption;
|
inherit (lib.nvim.binds) mkMappingOption;
|
||||||
|
inherit (lib.nvim.types) mkPluginSetupOption;
|
||||||
in {
|
in {
|
||||||
options.vim.minimap.codewindow = {
|
options.vim.minimap.codewindow = {
|
||||||
enable = mkEnableOption "codewindow plugin for minimap view";
|
enable = mkEnableOption "codewindow plugin for minimap view";
|
||||||
|
|
@ -11,5 +12,7 @@ in {
|
||||||
toggle = mkMappingOption "Toggle minimap [codewindow]" "<leader>mm";
|
toggle = mkMappingOption "Toggle minimap [codewindow]" "<leader>mm";
|
||||||
toggleFocus = mkMappingOption "Toggle minimap focus [codewindow]" "<leader>mf";
|
toggleFocus = mkMappingOption "Toggle minimap focus [codewindow]" "<leader>mf";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
setupOpts = mkPluginSetupOption "codewindow" {};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -6,6 +6,7 @@
|
||||||
}: let
|
}: let
|
||||||
inherit (lib.modules) mkIf mkMerge;
|
inherit (lib.modules) mkIf mkMerge;
|
||||||
inherit (lib.nvim.dag) entryAnywhere;
|
inherit (lib.nvim.dag) entryAnywhere;
|
||||||
|
inherit (lib.nvim.lua) toLuaObject;
|
||||||
inherit (lib.nvim.binds) addDescriptionsToMappings mkSetLuaBinding pushDownDefault;
|
inherit (lib.nvim.binds) addDescriptionsToMappings mkSetLuaBinding pushDownDefault;
|
||||||
|
|
||||||
cfg = config.vim.minimap.codewindow;
|
cfg = config.vim.minimap.codewindow;
|
||||||
|
|
@ -32,9 +33,7 @@ in {
|
||||||
|
|
||||||
pluginRC.codewindow = entryAnywhere ''
|
pluginRC.codewindow = entryAnywhere ''
|
||||||
local codewindow = require('codewindow')
|
local codewindow = require('codewindow')
|
||||||
codewindow.setup({
|
codewindow.setup(${toLuaObject cfg.setupOpts})
|
||||||
exclude_filetypes = { 'NvimTree', 'orgagenda', 'Alpha'},
|
|
||||||
})
|
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue