-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add image.nvim and update terminal configs
- Loading branch information
1 parent
7388894
commit 98dd143
Showing
8 changed files
with
123 additions
and
1,084 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
-- default config | ||
require("image").setup({ | ||
backend = "kitty", | ||
integrations = { | ||
markdown = { | ||
enabled = true, | ||
clear_in_insert_mode = false, | ||
download_remote_images = true, | ||
only_render_image_at_cursor = false, | ||
filetypes = { "markdown", "vimwiki" }, -- markdown extensions (ie. quarto) can go here | ||
}, | ||
neorg = { | ||
enabled = true, | ||
clear_in_insert_mode = false, | ||
download_remote_images = true, | ||
only_render_image_at_cursor = false, | ||
filetypes = { "norg" }, | ||
}, | ||
html = { | ||
enabled = false, | ||
}, | ||
css = { | ||
enabled = false, | ||
}, | ||
}, | ||
max_width = nil, | ||
max_height = nil, | ||
max_width_window_percentage = nil, | ||
max_height_window_percentage = 50, | ||
window_overlap_clear_enabled = false, -- toggles images when windows are overlapped | ||
window_overlap_clear_ft_ignore = { "cmp_menu", "cmp_docs", "" }, | ||
editor_only_render_when_focused = false, -- auto show/hide images when the editor gains/looses focus | ||
tmux_show_only_in_active_window = false, -- auto show/hide images in the correct Tmux window (needs visual-activity off) | ||
hijack_file_patterns = { "*.png", "*.jpg", "*.jpeg", "*.gif", "*.webp", "*.avif" }, -- render image files as images when opened | ||
}) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,6 +27,7 @@ | |
set -g status-bg color141 | ||
set -g status-fg white | ||
set -gq allow-passthrough on | ||
''; | ||
}; | ||
} | ||
|
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters