telescope fixes
This commit is contained in:
parent
2b7bbdf2fe
commit
eb9f25b740
4 changed files with 5 additions and 4 deletions
|
@ -5,7 +5,7 @@
|
|||
}: let
|
||||
inherit (pkgs.stdenv.hostPlatform) isLinux;
|
||||
repo_root = "../../..";
|
||||
nv_fonts_basic = ["Departure Mono" "Fantasque Sans Mono"];
|
||||
nv_fonts_basic = ["Maple Mono NF" "Departure Mono" "Fantasque Sans Mono"];
|
||||
nv_fonts_normal =
|
||||
nv_fonts_basic
|
||||
++ (
|
||||
|
|
|
@ -194,7 +194,7 @@
|
|||
};
|
||||
"<leader>fg" = {
|
||||
mode = "n";
|
||||
action = "require(\"telescope\").extensions.egrepify.egrepify";
|
||||
action = "egrepify";
|
||||
options.desc = "Live Grep";
|
||||
};
|
||||
"<leader>fb" = {
|
||||
|
|
|
@ -7,7 +7,7 @@ local builtin = require("telescope.builtin")
|
|||
-- greps
|
||||
vim.keymap.set("n", "<leader>ff", builtin.find_files, { desc = "Find Files" })
|
||||
-- vim.keymap.set("n", "<leader>fg", builtin.live_grep, { desc = "Live Grep" })
|
||||
vim.keymap.set("n", "<leader>fg", require("telescope").extensions.egrepify.egrepify, { desc = "Live Grep" })
|
||||
vim.keymap.set("n", "<leader>fg", ":Telescope egrepify<CR>", { desc = "Live Grep" })
|
||||
vim.keymap.set("n", "<leader>fb", builtin.buffers, { desc = "Buffers" })
|
||||
|
||||
-- register reading
|
||||
|
|
|
@ -8,7 +8,7 @@ if wezterm.config_builder then
|
|||
end
|
||||
|
||||
config.font = wezterm.font_with_fallback({
|
||||
-- { family = "Maple Mono NF" },
|
||||
{ family = "Maple Mono NF" },
|
||||
{ family = "Departure Mono" },
|
||||
{ family = "Fantasque Sans Mono" },
|
||||
{ family = "Iosevka Custom", weight = "Medium" },
|
||||
|
@ -18,6 +18,7 @@ config.font_rules = {
|
|||
{
|
||||
italic = true,
|
||||
font = wezterm.font_with_fallback({
|
||||
{ family = "Maple Mono NF", italic = true },
|
||||
{ family = "Dank Mono", italic = true },
|
||||
{ family = "Fantasque Sans Mono", italic = true },
|
||||
{ family = "Iosevka Custom", weight = "Light" },
|
||||
|
|
Loading…
Add table
Reference in a new issue