This commit is contained in:
Kopatz
2025-11-07 14:57:42 +01:00
parent b9b72afbaf
commit 9010f16549
3 changed files with 9 additions and 4 deletions

View File

@@ -32,6 +32,7 @@
};
plugins.mini-align.enable = true;
plugins.lzn-auto-require.enable = true;
plugins.lz-n.enable = true;
keymaps = [

View File

@@ -1,7 +1,7 @@
{
plugins.render-markdown = {
enable = true;
lazyLoad.settings.ft = "markdown";
lazyLoad.settings.ft = ["markdown" "vimwiki"];
settings = {
file_types = [
"markdown"

View File

@@ -1,6 +1,4 @@
{
plugins.telescope = {
enable = true;
let
keymaps = {
"<leader>sg" = "live_grep";
"<leader>sf" = {
@@ -16,6 +14,12 @@
options.desc = "List buffers";
};
};
in
{
plugins.telescope = {
enable = true;
inherit keymaps;
lazyLoad.settings.keys = builtins.attrNames keymaps;
extensions.fzf-native = {
enable = true;
};