Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion config/core/options.nix
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
gdefault = true;
ignorecase = true;
incsearch = true;
inccommand = "split"; #Adds splitting ability for complex find and replace with exclusions

autoindent = true;
expandtab = true;
Expand Down
1 change: 1 addition & 0 deletions plugins/core/default.nix
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
imports = [
./blink-cmp.nix
./live-command-nvim.nix
];
}
19 changes: 19 additions & 0 deletions plugins/core/live-command-nvim.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# live-command.nvim - Preview commands in Neovim
# Provides live preview for arbitrary Ex commands including :g!, :s, and more
# https://github.com/smjonas/live-command.nvim

{ pkgs, ... }:
{
config.vim.extraPlugins = {
live-command-nvim = {
package = pkgs.vimPlugins.live-command-nvim;
setup = ''
require("live-command").setup {
commands = {
Norm = { cmd = "norm" },
},
}
'';
};
};
}