diff --git a/modules/utility/telescope/telescope.nix b/modules/utility/telescope/telescope.nix index fa77fdc..7735fc1 100644 --- a/modules/utility/telescope/telescope.nix +++ b/modules/utility/telescope/telescope.nix @@ -4,26 +4,26 @@ with builtins; { options.vim.telescope = { mappings = { findFiles = mkMappingOption "Find files [Telescope]" "ff"; - liveGrep = mkMappingOption "Live grep [Telescope]" "fg"; - buffers = mkMappingOption "Buffers [Telescope]" "fb"; - helpTags = mkMappingOption "Help tags [Telescope]" "fh"; - open = mkMappingOption "Open [Telescope]" "ft"; + liveGrep = mkMappingOption "Live grep [Telescope]" "fg"; + buffers = mkMappingOption "Buffers [Telescope]" "fb"; + helpTags = mkMappingOption "Help tags [Telescope]" "fh"; + open = mkMappingOption "Open [Telescope]" "ft"; - gitCommits = mkMappingOption "Git commits [Telescope]" "fvcw"; - gitBufferCommits = mkMappingOption "Git buffer commits [Telescope]" "fvcb"; - gitBranches = mkMappingOption "Git branches [Telescope]" "fvb"; - gitStatus = mkMappingOption "Git status [Telescope]" "fvs"; - gitStash = mkMappingOption "Git stash [Telescope]" "fvx"; + gitCommits = mkMappingOption "Git commits [Telescope]" "fvcw"; + gitBufferCommits = mkMappingOption "Git buffer commits [Telescope]" "fvcb"; + gitBranches = mkMappingOption "Git branches [Telescope]" "fvb"; + gitStatus = mkMappingOption "Git status [Telescope]" "fvs"; + gitStash = mkMappingOption "Git stash [Telescope]" "fvx"; - lspDocumentSymbols = mkMappingOption "LSP Document Symbols [Telescope]" "flsb"; - lspWorkspaceSymbols = mkMappingOption "LSP Workspace Symbols [Telescope]" "flsw"; - lspReferences = mkMappingOption "LSP References [Telescope]" "flr"; - lspImplementations = mkMappingOption "LSP Implementations [Telescope]" "fli"; - lspDefinitions = mkMappingOption "LSP Definitions [Telescope]" "flD"; - lspTypeDefinitions = mkMappingOption "LSP Type Definitions [Telescope]" "flt"; - diagnostics = mkMappingOption "Diagnostics [Telescope]" "fld"; + lspDocumentSymbols = mkMappingOption "LSP Document Symbols [Telescope]" "flsb"; + lspWorkspaceSymbols = mkMappingOption "LSP Workspace Symbols [Telescope]" "flsw"; + lspReferences = mkMappingOption "LSP References [Telescope]" "flr"; + lspImplementations = mkMappingOption "LSP Implementations [Telescope]" "fli"; + lspDefinitions = mkMappingOption "LSP Definitions [Telescope]" "flD"; + lspTypeDefinitions = mkMappingOption "LSP Type Definitions [Telescope]" "flt"; + diagnostics = mkMappingOption "Diagnostics [Telescope]" "fld"; - treesitter = mkMappingOption "Treesitter [Telescope]" "fs"; + treesitter = mkMappingOption "Treesitter [Telescope]" "fs"; }; enable = mkEnableOption "Enable multi-purpose telescope utility";