refactor(plugins/astrocore): move some settings out of plugin

This commit is contained in:
Nicolas Goudry 2024-06-07 22:51:48 +02:00
parent 2b6a512de0
commit 1677fceed9
No known key found for this signature in database
GPG key ID: 5FC434D9FFD1DF44
15 changed files with 720 additions and 778 deletions

358
config/autocmds.nix Normal file
View file

@ -0,0 +1,358 @@
# https://github.com/AstroNvim/AstroNvim/blob/v4.7.7/lua/astronvim/plugins/_astrocore_autocmds.lua
{
autoGroups = {
auto_quit.clear = true;
autoview.clear = true;
bufferline.clear = true;
checktime.clear = true;
create_dir.clear = true;
editorconfig_filetype.clear = true;
file_user_events.clear = true;
highlighturl.clear = true;
highlightyank.clear = true;
large_buf_settings.clear = true;
q_close_windows.clear = true;
terminal_settings.clear = true;
unlist_quickfix.clear = true;
};
autoCmd = [
# auto_quit
# https://github.com/AstroNvim/AstroNvim/blob/v4.7.7/lua/astronvim/plugins/_astrocore_autocmds.lua#L18-L46
{
event = "BufEnter";
desc = "Quit neovim if more than one window is open and only sidebar windows are list";
group = "auto_quit";
callback.__raw = ''
function()
local wins = vim.api.nvim_tabpage_list_wins(0)
-- Both neo-tree and aerial will auto-quit if there is only a single window left
if #wins <= 1 then return end
local sidebar_fts = { aerial = true, ["neo-tree"] = true }
for _, winid in ipairs(wins) do
if vim.api.nvim_win_is_valid(winid) then
local bufnr = vim.api.nvim_win_get_buf(winid)
local filetype = vim.bo[bufnr].filetype
-- If any visible windows are not sidebars, early return
if not sidebar_fts[filetype] then
return
-- If the visible window is a sidebar
else
-- only count filetypes once, so remove a found sidebar from the detection
sidebar_fts[filetype] = nil
end
end
end
if #vim.api.nvim_list_tabpages() > 1 then
vim.cmd.tabclose()
else
vim.cmd.qall()
end
end
'';
}
# autoview
# https://github.com/AstroNvim/AstroNvim/blob/v4.7.7/lua/astronvim/plugins/_astrocore_autocmds.lua#L49-L70
{
event = [ "BufWinLeave" "BufWritePost" "WinLeave" ];
desc = "Save view with mkview for real files";
group = "autoview";
callback.__raw = ''
function(event)
if vim.b[event.buf].view_activated then vim.cmd.mkview { mods = { emsg_silent = true } } end
end
'';
}
{
event = "BufWinEnter";
desc = "Try to load file view if available and enable view saving for real files";
group = "autoview";
callback.__raw = ''
function(event)
if not vim.b[event.buf].view_activated then
local filetype = vim.bo[event.buf].filetype
local buftype = vim.bo[event.buf].buftype
local ignore_filetypes = { "gitcommit", "gitrebase", "svg", "hgcommit" }
if buftype == "" and filetype and filetype ~= "" and not vim.tbl_contains(ignore_filetypes, filetype) then
vim.b[event.buf].view_activated = true
vim.cmd.loadview { mods = { emsg_silent = true } }
end
end
end
'';
}
# bufferline
# https://github.com/AstroNvim/AstroNvim/blob/v4.7.7/lua/astronvim/plugins/_astrocore_autocmds.lua#L73-L115
{
event = [ "BufAdd" "BufEnter" "TabNewEntered" ];
desc = "Update buffers when adding new buffers";
group = "bufferline";
callback.__raw = ''
function(args)
local buf_utils = require "astrocore.buffer"
if not vim.t.bufs then vim.t.bufs = {} end
if not buf_utils.is_valid(args.buf) then return end
if args.buf ~= buf_utils.current_buf then
buf_utils.last_buf = buf_utils.is_valid(buf_utils.current_buf) and buf_utils.current_buf or nil
buf_utils.current_buf = args.buf
end
local bufs = vim.t.bufs
if not vim.tbl_contains(bufs, args.buf) then
table.insert(bufs, args.buf)
vim.t.bufs = bufs
end
vim.t.bufs = vim.tbl_filter(buf_utils.is_valid, vim.t.bufs)
require("astrocore").event "BufsUpdated"
end
'';
}
{
event = [ "BufDelete" "TermClose" ];
desc = "Update buffers when deleting buffers";
group = "bufferline";
callback.__raw = ''
function(args)
local removed
for _, tab in ipairs(vim.api.nvim_list_tabpages()) do
local bufs = vim.t[tab].bufs
if bufs then
for i, bufnr in ipairs(bufs) do
if bufnr == args.buf then
removed = true
table.remove(bufs, i)
vim.t[tab].bufs = bufs
break
end
end
end
end
vim.t.bufs = vim.tbl_filter(require("astrocore.buffer").is_valid, vim.t.bufs)
if removed then require("astrocore").event "BufsUpdated" end
vim.cmd.redrawtabline()
end
'';
}
# checktime
# https://github.com/AstroNvim/AstroNvim/blob/v4.7.7/lua/astronvim/plugins/_astrocore_autocmds.lua#L118-L122
{
event = [ "FocusGained" "TermClose" "TermLeave" ];
desc = "Check if buffers changed on editor focus";
group = "checktime";
command = "checktime";
}
# create_dir
# https://github.com/AstroNvim/AstroNvim/blob/v4.7.7/lua/astronvim/plugins/_astrocore_autocmds.lua#L125-L132
{
event = "BufWritePre";
desc = "Automatically create parent directories if they don't exist when saving a file";
group = "create_dir";
callback.__raw = ''
function(args)
if not require("astrocore.buffer").is_valid(args.buf) then return end
vim.fn.mkdir(vim.fn.fnamemodify(vim.loop.fs_realpath(args.match) or args.match, ":p:h"), "p")
end
'';
}
# editorconfig_filetype
# https://github.com/AstroNvim/AstroNvim/blob/v4.7.7/lua/astronvim/plugins/_astrocore_autocmds.lua#L135-L144
{
event = "FileType";
desc = "configure editorconfig after filetype detection to override `ftplugin`s";
group = "editorconfig_filetype";
callback.__raw = ''
function(args)
if vim.F.if_nil(vim.b.editorconfig, vim.g.editorconfig, true) then
local editorconfig_avail, editorconfig = pcall(require, "editorconfig")
if editorconfig_avail then editorconfig.config(args.buf) end
end
end
'';
}
# file_user_events
# https://github.com/AstroNvim/AstroNvim/blob/v4.7.7/lua/astronvim/plugins/_astrocore_autocmds.lua#L147-L177
{
event = [ "BufReadPost" "BufNewFile" "BufWritePost" ];
desc = "AstroNvim user events for file detection (AstroFile and AstroGitFile)";
group = "file_user_events";
callback.__raw = ''
function(args)
if vim.b[args.buf].astrofile_checked then return end
vim.b[args.buf].astrofile_checked = true
vim.schedule(function()
if not vim.api.nvim_buf_is_valid(args.buf) then return end
local astro = require "astrocore"
local current_file = vim.api.nvim_buf_get_name(args.buf)
if vim.g.vscode or not (current_file == "" or vim.bo[args.buf].buftype == "nofile") then
astro.event "File"
local folder = vim.fn.fnamemodify(current_file, ":p:h")
if vim.fn.has "win32" == 1 then folder = ('"%s"'):format(folder) end
if vim.fn.executable "git" == 1 then
if astro.cmd({ "git", "-C", folder, "rev-parse" }, false) or astro.file_worktree() then
astro.event "GitFile"
pcall(vim.api.nvim_del_augroup_by_name, "file_user_events")
end
else
pcall(vim.api.nvim_del_augroup_by_name, "file_user_events")
end
vim.schedule(function()
if require("astrocore.buffer").is_valid(args.buf) then
vim.api.nvim_exec_autocmds(args.event, { buffer = args.buf, data = args.data })
end
end)
end
end)
end
'';
}
# highlighturl
# https://github.com/AstroNvim/AstroNvim/blob/v4.7.7/lua/astronvim/plugins/_astrocore_autocmds.lua#L180-L203
{
event = [ "VimEnter" "FileType" "BufEnter" "WinEnter" ];
desc = "URL Highlighting";
group = "highlighturl";
callback.__raw = ''
function(args)
for _, win in ipairs(vim.api.nvim_list_wins()) do
if
vim.api.nvim_win_get_buf(win) == args.buf
and vim.tbl_get(require "astrocore", "config", "features", "highlighturl")
and not vim.w[win].highlighturl_enabled
then
require("astrocore").set_url_match(win)
end
end
end
'';
}
{
event = [ "VimEnter" "User" ];
desc = "Set up the default HighlightURL highlight group";
group = "highlighturl";
callback.__raw = ''
function(args)
if args.event == "VimEnter" or args.match == "AstroColorScheme" then
vim.api.nvim_set_hl(0, "HighlightURL", { default = true, underline = true })
end
end
'';
}
# highlightyank
# https://github.com/AstroNvim/AstroNvim/blob/v4.7.7/lua/astronvim/plugins/_astrocore_autocmds.lua#L206-L211
{
event = "TextYankPost";
desc = "Highlight yanked text";
group = "highlightyank";
pattern = "*";
callback.__raw = ''
function()
vim.highlight.on_yank()
end
'';
}
# large_buf_settings
# https://github.com/AstroNvim/AstroNvim/blob/v4.7.7/lua/astronvim/plugins/_astrocore_autocmds.lua#L214-L239
{
event = "User";
desc = "Disable certain functionality on very large files";
group = "large_buf_settings";
pattern = "AstroLargeBuf";
callback.__raw = ''
function(args)
vim.opt_local.wrap = true -- enable wrap, long lines in vim are slow
vim.opt_local.list = false -- disable list chars
vim.b[args.buf].autoformat = false -- disable autoformat on save
vim.b[args.buf].cmp_enabled = false -- disable completion
vim.b[args.buf].miniindentscope_disable = true -- disable indent scope
vim.b[args.buf].matchup_matchparen_enabled = 0 -- disable vim-matchup
local astrocore = require "astrocore"
if vim.tbl_get(astrocore.config, "features", "highlighturl") then
astrocore.config.features.highlighturl = false
vim.tbl_map(function(win)
if vim.w[win].highlighturl_enabled then astrocore.delete_url_match(win) end
end, vim.api.nvim_list_wins())
end
local ibl_avail, ibl = pcall(require, "ibl") -- disable indent-blankline
if ibl_avail then ibl.setup_buffer(args.buf, { enabled = false }) end
local illuminate_avail, illuminate = pcall(require, "illuminate.engine") -- disable vim-illuminate
if illuminate_avail then illuminate.stop_buf(args.buf) end
local rainbow_avail, rainbow = pcall(require, "rainbow-delimiters") -- disable rainbow-delimiters
if rainbow_avail then rainbow.disable(args.buf) end
end
'';
}
# q_close_windows
# https://github.com/AstroNvim/AstroNvim/blob/v4.7.7/lua/astronvim/plugins/_astrocore_autocmds.lua#L242-L255
{
event = "BufWinEnter";
desc = "Make q close help, man, quickfix, dap floats";
group = "q_close_windows";
callback.__raw = ''
function(event)
if vim.tbl_contains({ "help", "nofile", "quickfix" }, vim.bo[event.buf].buftype) then
vim.keymap.set("n", "q", "<Cmd>close<CR>", {
desc = "Close window",
buffer = event.buf,
silent = true,
nowait = true,
})
end
end
'';
}
# terminal_settings
# https://github.com/AstroNvim/AstroNvim/blob/v4.7.7/lua/astronvim/plugins/_astrocore_autocmds.lua#L258-L266
{
event = "TermOpen";
desc = "Disable line number/fold column/sign column for terminals";
group = "terminal_settings";
callback.__raw = ''
function()
vim.opt_local.number = false
vim.opt_local.relativenumber = false
vim.opt_local.foldcolumn = "0"
vim.opt_local.signcolumn = "no"
end
'';
}
# unlist_quickfix
# https://github.com/AstroNvim/AstroNvim/blob/v4.7.7/lua/astronvim/plugins/_astrocore_autocmds.lua#L270-L275
{
event = "FileType";
desc = "Unlist quickfix buffers";
group = "unlist_quickfix";
pattern = "qf";
callback.__raw = ''
function()
vim.opt_local.buflisted = false
end
'';
}
];
}

View file

@ -1,35 +0,0 @@
let
forceWrite = {
action = "<cmd>silent! update! | redraw<cr>";
options.desc = "Force write";
};
in
{
keymaps = [
{
key = "<leader>n";
action = "<cmd>enew<cr>";
options.desc = "New file";
}
{
inherit (forceWrite) action options;
key = "<c-s>";
}
{
inherit (forceWrite) options;
mode = [ "i" "x" ];
key = "<c-s>";
action = "<esc>${forceWrite.action}";
}
{
key = "|";
action = "<cmd>vsplit<cr>";
options.desc = "Split vertically";
}
{
key = "\\";
action = "<cmd>split<cr>";
options.desc = "Split horizontally";
}
];
}

164
config/keymaps/buffers.nix Normal file
View file

@ -0,0 +1,164 @@
# Manage buffers
# https://github.com/AstroNvim/AstroNvim/blob/v4.7.7/lua/astronvim/plugins/_astrocore_mappings.lua#L56-L89
[
{
key = "<leader>c";
options.desc = "Close buffer";
action.__raw = ''
function()
require("astrocore.buffer").close()
end
'';
}
{
key = "<leader>C";
options.desc = "Force close buffer";
action.__raw = ''
function()
require("astrocore.buffer").close(0, true)
end
'';
}
{
key = "]b";
options.desc = "Next buffer in tabline";
action.__raw = ''
function()
require("astrocore.buffer").nav(vim.v.count1)
end
'';
}
{
key = "[b";
options.desc = "Previous buffer in tabline";
action.__raw = ''
function()
require("astrocore.buffer").nav(-vim.v.count1)
end
'';
}
{
key = ">b";
options.desc = "Move buffer tab right";
action.__raw = ''
function()
require("astrocore.buffer").move(vim.v.count1)
end
'';
}
{
key = "<b";
options.desc = "Move buffer tab left";
action.__raw = ''
function()
require("astrocore.buffer").move(-vim.v.count1)
end
'';
}
{
key = "<leader>bc";
options.desc = "Close all buffers except current";
action.__raw = ''
function()
require("astrocore.buffer").close_all(true)
end
'';
}
{
key = "<leader>bC";
options.desc = "Close all buffers";
action.__raw = ''
function()
require("astrocore.buffer").close_all()
end
'';
}
{
key = "<leader>bl";
options.desc = "Close all buffers to the left";
action.__raw = ''
function()
require("astrocore.buffer").close_left()
end
'';
}
{
key = "<leader>bp";
options.desc = "Previous buffer";
action.__raw = ''
function()
require("astrocore.buffer").prev()
end
'';
}
{
key = "<leader>br";
options.desc = "Close all buffers to the right";
action.__raw = ''
function()
require("astrocore.buffer").close_right()
end
'';
}
{
key = "<Leader>bse";
options.desc = "By extension";
action.__raw = ''
function()
require("astrocore.buffer").sort "extension"
end
'';
}
{
key = "<Leader>bsr";
options.desc = "By relative path";
action.__raw = ''
function()
require("astrocore.buffer").sort "unique_path"
end
'';
}
{
key = "<Leader>bsp";
options.desc = "By full path";
action.__raw = ''
function()
require("astrocore.buffer").sort "full_path"
end
'';
}
{
key = "<Leader>bsi";
options.desc = "By buffer number";
action.__raw = ''
function()
require("astrocore.buffer").sort "bufnr"
end
'';
}
{
key = "<Leader>bsm";
options.desc = "By modification";
action.__raw = ''
function()
require("astrocore.buffer").sort "modified"
end
'';
}
]

View file

@ -0,0 +1,10 @@
{
keymaps =
(import ./buffers.nix)
++ (import ./diagnostics.nix)
++ (import ./splits.nix)
++ (import ./standard.nix)
++ (import ./tabs.nix)
++ (import ./terminal.nix)
++ (import ./toggles.nix);
}

View file

@ -0,0 +1,44 @@
# Diagnostics
# https://github.com/AstroNvim/AstroNvim/blob/v4.7.7/lua/astronvim/plugins/_astrocore_mappings.lua#L92-L100
[
{
key = "<Leader>ld";
options.desc = "Hover diagnostics";
action.__raw = ''
function()
vim.diagnostic.open_float()
end
'';
}
{
key = "[d";
options.desc = "Previous diagnostic";
action.__raw = ''
function()
vim.diagnostic.goto_prev()
end
'';
}
{
key = "]d";
options.desc = "Next diagnostic";
action.__raw = ''
function()
vim.diagnostic.goto_next()
end
'';
}
{
key = "gl";
options.desc = "Hover diagnostics";
action.__raw = ''
function()
vim.diagnostic.open_float()
end
'';
}
]

44
config/keymaps/splits.nix Normal file
View file

@ -0,0 +1,44 @@
# Split navigation
# https://github.com/AstroNvim/AstroNvim/blob/v4.7.7/lua/astronvim/plugins/_astrocore_mappings.lua#L107-L114
[
{
key = "<C-H>";
action = "<C-w>h";
options.desc = "Move to left split";
}
{
key = "<C-J>";
action = "<C-w>j";
options.desc = "Move to below split";
}
{
key = "<C-K>";
action = "<C-w>k";
options.desc = "Move to above split";
}
{
key = "<C-L>";
action = "<C-w>l";
options.desc = "Move to right split";
}
{
key = "<C-Up>";
action = "<Cmd>resize -2<CR>";
options.desc = "Resize split up";
}
{
key = "<C-Down>";
action = "<Cmd>resize +2<CR>";
options.desc = "Resize split down";
}
{
key = "<C-Left>";
action = "<Cmd>vertical resize -2<CR>";
options.desc = "Resize split left";
}
{
key = "<C-Right>";
action = "<Cmd>vertical resize +2<CR>";
options.desc = "Resize split right";
}
]

View file

@ -0,0 +1,97 @@
let
forceWrite = {
action = "<cmd>silent! update! | redraw<cr>";
options.desc = "Force write";
};
in
[
# Standard operations
# https://github.com/AstroNvim/AstroNvim/blob/v4.7.7/lua/astronvim/plugins/_astrocore_mappings.lua#L27-L44
{
key = "j";
mode = [ "n" "x" ];
action = "v:count == 0 ? 'gj' : 'j'";
options = {
desc = "Move cursor down";
expr = true;
silent = true;
};
}
{
key = "k";
mode = [ "n" "x" ];
action = "v:count == 0 ? 'gk' : 'k'";
options = {
desc = "Move cursor up";
expr = true;
silent = true;
};
}
{
key = "<leader>w";
action = "<cmd>w<cr>";
options.desc = "Save";
}
{
key = "<leader>q";
action = "<cmd>confirm q<cr>";
options.desc = "Quit window";
}
{
key = "<leader>Q";
action = "<cmd>confirm qall<cr>";
options.desc = "Exit neovim";
}
{
key = "<leader>n";
action = "<cmd>enew<cr>";
options.desc = "New file";
}
{
inherit (forceWrite) action options;
key = "<c-s>";
}
{
inherit (forceWrite) options;
key = "<c-s>";
mode = [ "i" "x" ];
action = "<esc>" + forceWrite.action;
}
{
key = "<c-q>";
action = "<cmd>q!<cr>";
options.desc = "Force quit";
}
{
key = "|";
action = "<cmd>vsplit<cr>";
options.desc = "Vertical split";
}
{
key = "\\";
action = "<cmd>split<cr>";
options.desc = "Horizontal split";
}
{
key = "gx";
action.__raw = "require('astrocore').system_open";
options.desc = "Open the file under cursor with system app";
}
# Stay in indent mode
# https://github.com/AstroNvim/AstroNvim/blob/v4.7.7/lua/astronvim/plugins/_astrocore_mappings.lua#L117-L118
{
key = "<S-Tab>";
mode = [ "v" ];
action = "<gv";
options.desc = "Unindent line";
}
{
key = "<Tab>";
mode = [ "v" ];
action = ">gv";
options.desc = "Indent line";
}
]

24
config/keymaps/tabs.nix Normal file
View file

@ -0,0 +1,24 @@
# Navigate tabs
# https://github.com/AstroNvim/AstroNvim/blob/v4.7.7/lua/astronvim/plugins/_astrocore_mappings.lua#L103-L104
[
{
key = "]t";
options.desc = "Next tab";
action.__raw = ''
function()
vim.cmd.tabnext()
end
'';
}
{
key = "[t";
options.desc = "Previous tab";
action.__raw = ''
function()
vim.cmd.tabprevious()
end
'';
}
]

View file

@ -0,0 +1,28 @@
# Improved terminal navigation
# https://github.com/AstroNvim/AstroNvim/blob/v4.7.7/lua/astronvim/plugins/_astrocore_mappings.lua#L121-L124
[
{
key = "<C-H>";
mode = [ "t" ];
action = "<Cmd>wincmd h<CR>";
options.desc = "Terminal left window navigation";
}
{
key = "<C-J>";
mode = [ "t" ];
action = "<Cmd>wincmd j<CR>";
options.desc = "Terminal down window navigation";
}
{
key = "<C-K>";
mode = [ "t" ];
action = "<Cmd>wincmd k<CR>";
options.desc = "Terminal up window navigation";
}
{
key = "<C-L>";
mode = [ "t" ];
action = "<Cmd>wincmd l<CR>";
options.desc = "Terminal right window navigation";
}
]

164
config/keymaps/toggles.nix Normal file
View file

@ -0,0 +1,164 @@
# UI/UX toggles
# https://github.com/AstroNvim/AstroNvim/blob/v4.7.7/lua/astronvim/plugins/_astrocore_mappings.lua#L128-L145
[
{
key = "<Leader>uA";
options.desc = "Toggle rooter autochdir";
action.__raw = ''
function()
require("astrocore.toggles").autochdir()
end
'';
}
{
key = "<Leader>ub";
options.desc = "Toggle background";
action.__raw = ''
function()
require("astrocore.toggles").background()
end
'';
}
{
key = "<Leader>ud";
options.desc = "Toggle diagnostics";
action.__raw = ''
function()
require("astrocore.toggles").diagnostics()
end
'';
}
{
key = "<Leader>ug";
options.desc = "Toggle signcolumn";
action.__raw = ''
function()
require("astrocore.toggles").signcolumn()
end
'';
}
{
key = "<Leader>u>";
options.desc = "Toggle foldcolumn";
action.__raw = ''
function()
require("astrocore.toggles").foldcolumn()
end
'';
}
{
key = "<Leader>ui";
options.desc = "Change indent setting";
action.__raw = ''
function()
require("astrocore.toggles").indent()
end
'';
}
{
key = "<Leader>ul";
options.desc = "Toggle statusline";
action.__raw = ''
function()
require("astrocore.toggles").statusline()
end
'';
}
{
key = "<Leader>un";
options.desc = "Change line numbering";
action.__raw = ''
function()
require("astrocore.toggles").number()
end
'';
}
{
key = "<Leader>uN";
options.desc = "Toggle Notifications";
action.__raw = ''
function()
require("astrocore.toggles").notifications()
end
'';
}
{
key = "<Leader>up";
options.desc = "Toggle paste mode";
action.__raw = ''
function()
require("astrocore.toggles").paste()
end
'';
}
{
key = "<Leader>us";
options.desc = "Toggle spellcheck";
action.__raw = ''
function()
require("astrocore.toggles").spell()
end
'';
}
{
key = "<Leader>uS";
options.desc = "Toggle conceal";
action.__raw = ''
function()
require("astrocore.toggles").conceal()
end
'';
}
{
key = "<Leader>ut";
options.desc = "Toggle tabline";
action.__raw = ''
function()
require("astrocore.toggles").tabline()
end
'';
}
{
key = "<Leader>uu";
options.desc = "Toggle URL highlight";
action.__raw = ''
function()
require("astrocore.toggles").url_match()
end
'';
}
{
key = "<Leader>uw";
options.desc = "Toggle wrap";
action.__raw = ''
function()
require("astrocore.toggles").wrap()
end
'';
}
{
key = "<Leader>uy";
options.desc = "Toggle syntax highlight";
action.__raw = ''
function()
require("astrocore.toggles").buffer_syntax()
end
'';
}
]

View file

@ -3,9 +3,61 @@
# Use :h <option> to load help for given <option>
{
opts = {
# Don't stop backspace at insert
backspace.__raw = ''
vim.list_extend(vim.opt.backspace:get(), { "nostop" })
'';
# Keep visual indentation on wrapped lines
breakindent = true;
# Hide command line unless needed
cmdheight = 0;
# Insert mode completion options
completeopt = [ "menu" "menuone" "noselect" ];
# Raise a dialog asking if you wish to save the current file(s)
confirm = true;
# Copy previous indentation on autoindenting
copyindent = true;
# Highlight current line
cursorline = true;
# Enable linematch diff algorithm
diffopt.__raw = ''
vim.list_extend(vim.opt.diffopt:get(), { "algorithm:histogram", "linematch:60" })
'';
# Expand <Tab> to spaces
expandtab = true;
# Disable `~` on nonexistent lines
fillchars = { eob = " "; };
# Enable fold with all code unfolded
foldcolumn = "1";
foldenable = true;
foldlevel = 99;
foldlevelstart = 99;
# Ignore case in search patterns
ignorecase = true;
# Show substitution preview in split window
inccommand = "split";
# Infer casing on word completion
infercase = true;
# Global statusline
laststatus = 3;
# Wrap lines at 'breakat'
linebreak = true;
# Enable list mode
list = true;
@ -16,11 +68,81 @@
# - non-breakable spaces are shown as ⎕
listchars = "tab:,trail:·,multispace:·,lead: ,nbsp:";
# Enable mouse support
mouse = "a";
# Show line numbers
number = true;
# Preserve indentation as much as possible
preserveindent = true;
# Height of the popup menu
pumheight = 10;
# Display line numbers relative to current line
relativenumber = true;
# Minimal number of lines to keep around the cursor
# This has the effect to move the view along with current line
#scrolloff = 999;
# Number of spaces to use for indentation
shiftwidth = 2;
# Disable search count wrap and startup messages
shortmess.__raw = ''
vim.tbl_deep_extend("force", vim.opt.shortmess:get(), { s = true, I = true })
'';
# Disable showing modes in command line
showmode = false;
# Always show tabline
showtabline = 2;
# Show signs column
signcolumn = "yes";
# Override ignorecase if search pattern contains uppercase characters
smartcase = true;
# Number of spaces input on <Tab>
softtabstop = 2;
# Open horizontal split below (:split)
splitbelow = true;
# Open vertical split to the right (:vsplit)
splitright = true;
# Number of spaces to represent a <Tab>
tabstop = 2;
# Enables 24-bit RGB color
termguicolors = true;
# Shorter timeout duration
timeoutlen = 500;
# Set window title to the filename
title = true;
# Save undo history to undo file (in $XDG_STATE_HOME/nvim/undo)
undofile = true;
viewoptions.__raw = ''
vim.tbl_filter(function(val) return val ~= "curdir" end, vim.opt.viewoptions:get())
'';
# Enable virtual edit in visual block mode
# This has the effect of selecting empty cells beyond lines boundaries
virtualedit = "block";
# Disable line wrapping
wrap = false;
# Disable making a backup before overwriting a file
writebackup = false;
};
}