2023-02-27 15:53:34 +01:00
|
|
|
{
|
2024-04-07 16:16:08 +02:00
|
|
|
config,
|
2023-02-27 15:53:34 +01:00
|
|
|
lib,
|
|
|
|
...
|
2023-11-06 10:33:38 +01:00
|
|
|
}: let
|
2024-11-10 23:38:52 +01:00
|
|
|
inherit (lib.options) mkOption mkEnableOption literalMD;
|
2024-04-07 16:16:08 +02:00
|
|
|
inherit (lib.strings) optionalString;
|
2024-09-19 21:07:25 +02:00
|
|
|
inherit (lib.types) enum bool str int either;
|
|
|
|
inherit (lib.generators) mkLuaInline;
|
2024-04-07 16:16:08 +02:00
|
|
|
inherit (lib.nvim.dag) entryAfter;
|
2024-11-10 23:38:52 +01:00
|
|
|
inherit (lib.nvim.binds) pushDownDefault;
|
2024-07-20 10:30:48 +02:00
|
|
|
inherit (lib.nvim.lua) toLuaObject;
|
2024-09-19 21:07:25 +02:00
|
|
|
inherit (lib.nvim.types) luaInline;
|
2024-04-07 16:16:08 +02:00
|
|
|
|
|
|
|
cfg = config.vim;
|
2023-11-06 10:33:38 +01:00
|
|
|
in {
|
2023-02-27 15:53:34 +01:00
|
|
|
options.vim = {
|
|
|
|
colourTerm = mkOption {
|
2024-03-24 01:14:39 +01:00
|
|
|
type = bool;
|
2023-02-27 15:53:34 +01:00
|
|
|
default = true;
|
|
|
|
description = "Set terminal up for 256 colours";
|
|
|
|
};
|
|
|
|
|
|
|
|
disableArrows = mkOption {
|
2024-03-24 01:14:39 +01:00
|
|
|
type = bool;
|
2023-02-27 15:53:34 +01:00
|
|
|
default = false;
|
|
|
|
description = "Set to prevent arrow keys from moving cursor";
|
|
|
|
};
|
|
|
|
|
|
|
|
hideSearchHighlight = mkOption {
|
2024-03-24 01:14:39 +01:00
|
|
|
type = bool;
|
2023-02-27 15:53:34 +01:00
|
|
|
default = false;
|
|
|
|
description = "Hide search highlight so it doesn't stay highlighted";
|
|
|
|
};
|
|
|
|
|
|
|
|
scrollOffset = mkOption {
|
2024-03-24 01:14:39 +01:00
|
|
|
type = int;
|
2023-02-27 15:53:34 +01:00
|
|
|
default = 8;
|
|
|
|
description = "Start scrolling this number of lines from the top or bottom of the page.";
|
|
|
|
};
|
|
|
|
|
|
|
|
wordWrap = mkOption {
|
2024-03-24 01:14:39 +01:00
|
|
|
type = bool;
|
2023-02-27 15:53:34 +01:00
|
|
|
default = true;
|
|
|
|
description = "Enable word wrapping.";
|
|
|
|
};
|
|
|
|
|
|
|
|
syntaxHighlighting = mkOption {
|
2024-03-24 01:14:39 +01:00
|
|
|
type = bool;
|
2024-04-30 07:08:54 +02:00
|
|
|
default = !config.vim.treesitter.highlight.enable;
|
2023-02-27 15:53:34 +01:00
|
|
|
description = "Enable syntax highlighting";
|
|
|
|
};
|
|
|
|
|
|
|
|
useSystemClipboard = mkOption {
|
2024-03-24 01:14:39 +01:00
|
|
|
type = bool;
|
2023-09-21 12:14:35 +02:00
|
|
|
default = false;
|
2023-02-27 15:53:34 +01:00
|
|
|
description = "Make use of the clipboard for default yank and paste operations. Don't use * and +";
|
|
|
|
};
|
|
|
|
|
|
|
|
mouseSupport = mkOption {
|
2024-03-24 01:14:39 +01:00
|
|
|
type = enum ["a" "n" "v" "i" "c"];
|
2023-02-27 15:53:34 +01:00
|
|
|
default = "a";
|
2024-02-12 08:11:53 +01:00
|
|
|
description = ''
|
|
|
|
Set modes for mouse support.
|
|
|
|
|
|
|
|
* a - all
|
|
|
|
* n - normal
|
|
|
|
* v - visual
|
|
|
|
* i - insert
|
|
|
|
* c - command
|
|
|
|
'';
|
2023-02-27 15:53:34 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
lineNumberMode = mkOption {
|
2024-03-24 01:14:39 +01:00
|
|
|
type = enum ["relative" "number" "relNumber" "none"];
|
2023-02-27 15:53:34 +01:00
|
|
|
default = "relNumber";
|
2024-11-10 23:38:52 +01:00
|
|
|
example = "none";
|
2024-04-14 14:09:13 +02:00
|
|
|
description = "How line numbers are displayed.";
|
2023-02-27 15:53:34 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
preventJunkFiles = mkOption {
|
2024-03-24 01:14:39 +01:00
|
|
|
type = bool;
|
2023-02-27 15:53:34 +01:00
|
|
|
default = false;
|
2024-04-07 16:16:08 +02:00
|
|
|
description = "Prevent swapfile and backupfile from being created";
|
2023-02-27 15:53:34 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
tabWidth = mkOption {
|
2024-03-24 01:14:39 +01:00
|
|
|
type = int;
|
2023-02-27 15:53:34 +01:00
|
|
|
default = 4;
|
|
|
|
description = "Set the width of tabs";
|
|
|
|
};
|
|
|
|
|
|
|
|
autoIndent = mkOption {
|
2024-03-24 01:14:39 +01:00
|
|
|
type = bool;
|
2023-02-27 15:53:34 +01:00
|
|
|
default = true;
|
|
|
|
description = "Enable auto indent";
|
|
|
|
};
|
|
|
|
|
|
|
|
cmdHeight = mkOption {
|
2024-03-24 01:14:39 +01:00
|
|
|
type = int;
|
2023-02-27 15:53:34 +01:00
|
|
|
default = 1;
|
|
|
|
description = "Height of the command pane";
|
|
|
|
};
|
|
|
|
|
|
|
|
updateTime = mkOption {
|
2024-03-24 01:14:39 +01:00
|
|
|
type = int;
|
2023-02-27 15:53:34 +01:00
|
|
|
default = 300;
|
|
|
|
description = "The number of milliseconds till Cursor Hold event is fired";
|
|
|
|
};
|
|
|
|
|
|
|
|
showSignColumn = mkOption {
|
2024-03-24 01:14:39 +01:00
|
|
|
type = bool;
|
2023-02-27 15:53:34 +01:00
|
|
|
default = true;
|
|
|
|
description = "Show the sign column";
|
|
|
|
};
|
|
|
|
|
|
|
|
bell = mkOption {
|
2024-03-24 01:14:39 +01:00
|
|
|
type = enum ["none" "visual" "on"];
|
2023-02-27 15:53:34 +01:00
|
|
|
default = "none";
|
|
|
|
description = "Set how bells are handled. Options: on, visual or none";
|
|
|
|
};
|
|
|
|
|
|
|
|
mapTimeout = mkOption {
|
2024-03-24 01:14:39 +01:00
|
|
|
type = int;
|
2023-02-27 15:53:34 +01:00
|
|
|
default = 500;
|
2024-11-10 23:38:52 +01:00
|
|
|
description = "Timeout in ms that Neovim will wait for mapped action to complete";
|
2023-02-27 15:53:34 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
splitBelow = mkOption {
|
2024-03-24 01:14:39 +01:00
|
|
|
type = bool;
|
2023-02-27 15:53:34 +01:00
|
|
|
default = true;
|
|
|
|
description = "New splits will open below instead of on top";
|
|
|
|
};
|
|
|
|
|
|
|
|
splitRight = mkOption {
|
2024-03-24 01:14:39 +01:00
|
|
|
type = bool;
|
2023-02-27 15:53:34 +01:00
|
|
|
default = true;
|
|
|
|
description = "New splits will open to the right";
|
|
|
|
};
|
2024-04-20 17:09:39 +02:00
|
|
|
|
2023-04-17 17:52:35 +02:00
|
|
|
enableEditorconfig = mkOption {
|
2024-03-24 01:14:39 +01:00
|
|
|
type = bool;
|
2023-04-22 00:05:19 +02:00
|
|
|
default = true;
|
2023-04-17 19:13:18 +02:00
|
|
|
description = "Follow editorconfig rules in current directory";
|
2023-04-17 20:56:21 +02:00
|
|
|
};
|
2023-05-09 12:14:53 +02:00
|
|
|
|
2023-05-19 14:14:25 +02:00
|
|
|
cursorlineOpt = mkOption {
|
2024-03-24 01:14:39 +01:00
|
|
|
type = enum ["line" "screenline" "number" "both"];
|
2023-05-19 14:14:25 +02:00
|
|
|
default = "line";
|
|
|
|
description = "Highlight the text line of the cursor with CursorLine hl-CursorLine";
|
|
|
|
};
|
|
|
|
|
2023-10-28 14:53:06 +02:00
|
|
|
searchCase = mkOption {
|
2024-03-24 01:14:39 +01:00
|
|
|
type = enum ["ignore" "smart" "sensitive"];
|
2023-10-28 14:53:06 +02:00
|
|
|
default = "sensitive";
|
|
|
|
description = "Set the case sensitivity of search";
|
|
|
|
};
|
2024-09-19 21:07:25 +02:00
|
|
|
|
|
|
|
undoFile = {
|
|
|
|
enable = mkEnableOption "undofile for persistent undo behaviour";
|
|
|
|
path = mkOption {
|
|
|
|
type = either str luaInline;
|
|
|
|
default = mkLuaInline "vim.fn.stdpath('state') .. '/undo'";
|
|
|
|
defaultText = literalMD ''
|
|
|
|
```nix
|
|
|
|
mkLuaInline "vim.fn.stdpath('state') .. '/undo'"
|
|
|
|
```
|
|
|
|
'';
|
|
|
|
example = literalMD ''
|
|
|
|
```nix
|
|
|
|
mkLuaInline "os.getenv('XDG_DATA_HOME') .. '/nvf/undo'"
|
|
|
|
```
|
|
|
|
'';
|
|
|
|
description = "Path to the directory in which undo history will be stored";
|
|
|
|
};
|
|
|
|
};
|
2023-02-27 15:53:34 +01:00
|
|
|
};
|
2024-04-07 16:16:08 +02:00
|
|
|
|
2024-11-10 23:38:52 +01:00
|
|
|
config.vim = {
|
|
|
|
# Set options that were previously interpolated in 'luaConfigRC.basic' as vim.options (vim.o)
|
|
|
|
# and 'vim.globals' (vim.g). Future options, if possible, should be added here instead of the
|
|
|
|
# luaConfigRC section below.
|
|
|
|
options = pushDownDefault {
|
|
|
|
encoding = "utf-8";
|
|
|
|
hidden = true;
|
|
|
|
expandtab = true;
|
|
|
|
mouse = cfg.mouseSupport;
|
|
|
|
tabstop = cfg.tabWidth;
|
|
|
|
shiftwidth = cfg.tabWidth;
|
|
|
|
softtabstop = cfg.tabWidth;
|
|
|
|
cmdheight = cfg.cmdHeight;
|
|
|
|
updatetime = cfg.updateTime;
|
|
|
|
tm = cfg.mapTimeout;
|
|
|
|
cursorlineopt = cfg.cursorlineOpt;
|
|
|
|
splitbelow = cfg.splitBelow;
|
|
|
|
splitright = cfg.splitRight;
|
|
|
|
autoindent = cfg.autoIndent;
|
|
|
|
termguicolors = cfg.colourTerm;
|
|
|
|
wrap = cfg.wordWrap;
|
|
|
|
};
|
|
|
|
|
|
|
|
globals = pushDownDefault {
|
|
|
|
mapleader = cfg.leaderKey;
|
|
|
|
maplocalleader = cfg.leaderKey;
|
|
|
|
editorconfig = cfg.enableEditorconfig;
|
|
|
|
};
|
|
|
|
|
|
|
|
# Options that are more difficult to set through 'vim.options'. Fear not, though
|
|
|
|
# as the Lua DAG is still as powerful as it could be.
|
|
|
|
luaConfigRC.basic = entryAfter ["globalsScript"] ''
|
2024-09-19 21:07:25 +02:00
|
|
|
-- Settings that are set for everything
|
|
|
|
vim.opt.shortmess:append("c")
|
|
|
|
|
|
|
|
${optionalString cfg.undoFile.enable ''
|
|
|
|
vim.o.undofile = true
|
|
|
|
vim.o.undodir = ${toLuaObject cfg.undoFile.path}
|
|
|
|
''}
|
|
|
|
|
|
|
|
${optionalString cfg.showSignColumn ''
|
|
|
|
vim.o.signcolumn = "yes"
|
|
|
|
''}
|
|
|
|
|
|
|
|
${optionalString cfg.preventJunkFiles ''
|
|
|
|
vim.o.swapfile = false
|
|
|
|
vim.o.backup = false
|
|
|
|
vim.o.writebackup = false
|
|
|
|
''}
|
|
|
|
|
|
|
|
${optionalString (cfg.bell == "none") ''
|
|
|
|
vim.o.errorbells = false
|
|
|
|
vim.o.visualbell = false
|
|
|
|
''}
|
|
|
|
|
|
|
|
${optionalString (cfg.bell == "on") ''
|
|
|
|
vim.o.visualbell = false
|
|
|
|
''}
|
|
|
|
|
|
|
|
${optionalString (cfg.bell == "visual") ''
|
|
|
|
vim.o.errorbells = false
|
|
|
|
''}
|
|
|
|
|
|
|
|
${optionalString (cfg.lineNumberMode == "relative") ''
|
|
|
|
vim.o.relativenumber = true
|
|
|
|
''}
|
|
|
|
|
|
|
|
${optionalString (cfg.lineNumberMode == "number") ''
|
|
|
|
vim.o.number = true
|
|
|
|
''}
|
|
|
|
|
|
|
|
${optionalString (cfg.lineNumberMode == "relNumber") ''
|
|
|
|
vim.o.number = true
|
|
|
|
vim.o.relativenumber = true
|
|
|
|
''}
|
|
|
|
|
|
|
|
${optionalString cfg.useSystemClipboard ''
|
|
|
|
vim.opt.clipboard:append("unnamedplus")
|
|
|
|
''}
|
|
|
|
|
|
|
|
${optionalString cfg.syntaxHighlighting ''
|
|
|
|
vim.cmd("syntax on")
|
|
|
|
''}
|
|
|
|
|
|
|
|
${optionalString cfg.hideSearchHighlight ''
|
|
|
|
vim.o.hlsearch = false
|
|
|
|
vim.o.incsearch = true
|
|
|
|
''}
|
|
|
|
|
|
|
|
${optionalString (cfg.searchCase == "ignore") ''
|
|
|
|
vim.o.smartcase = false
|
|
|
|
vim.o.ignorecase = true
|
|
|
|
''}
|
|
|
|
|
|
|
|
${optionalString (cfg.searchCase == "smart") ''
|
|
|
|
vim.o.smartcase = true
|
|
|
|
vim.o.ignorecase = true
|
|
|
|
''}
|
|
|
|
|
|
|
|
${optionalString (cfg.searchCase == "sensitive") ''
|
|
|
|
vim.o.smartcase = false
|
|
|
|
vim.o.ignorecase = false
|
|
|
|
''}
|
|
|
|
'';
|
|
|
|
};
|
2023-02-27 15:53:34 +01:00
|
|
|
}
|