๐Ÿ”’ Backup for my config files
dotfiles
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

add jj-log.nvim

Kacaii 09c97b7c 65f626b1

+17 -1
+2 -1
.config/fish/config.fish
··· 8 8 set -gx EDITOR nvim 9 9 set -gx XDG_CONFIG_HOME $HOME/.config 10 10 set -gx TERM xterm-256color 11 - set -gx JJ_DESCRIPTION ( get_jj_description ) 12 11 13 12 # ๏…› Config files 14 13 set -g dotfiles $HOME/dotfiles 15 14 set -g tmux_config_file $HOME/.tmux.conf 15 + 16 + set -g JJ_DESCRIPTION ( get_jj_description ) 16 17 17 18 # ๎™ Git Prompt Customization 18 19 set -g __fish_git_prompt_showdirtystate true
+4
.config/nvim/lua/plugins/jj_log.lua
··· 1 + return { 2 + "https://tangled.org/bpavuk.neocities.org/jj-log.nvim", 3 + opts = {}, 4 + }
+11
.config/nvim/lua/plugins/lualine.lua
··· 1 + local function jj_msg() 2 + local result = vim.b.jj_desc 3 + 4 + if not result then 5 + return "" 6 + end 7 + 8 + return "๓ฐœ˜ " .. result .. " " 9 + end 10 + 1 11 return { 2 12 "nvim-lualine/lualine.nvim", 3 13 opts = { 14 + sections = { lualine_c = { jj_msg } }, 4 15 options = { 5 16 section_separators = { left = "๎‚ด", right = "๎‚ถ" }, 6 17 component_separators = { left = "", right = "" },