forked from nico/dots
tmux: fix undercurls in neovim
This commit is contained in:
parent
009b68a2cd
commit
43bc80e3bb
4 changed files with 11 additions and 1 deletions
|
|
@ -9,6 +9,7 @@
|
|||
"fidget.nvim": { "branch": "main", "commit": "e2a175c2abe2d4f65357da1c98c59a5cfb2b543f" },
|
||||
"fzf-lua": { "branch": "main", "commit": "ce1e24f2a48089b65deefcb0a71a9856839002b5" },
|
||||
"gitsigns.nvim": { "branch": "main", "commit": "4daf7022f1481edf1e8fb9947df13bb07c18e89a" },
|
||||
"headlines.nvim": { "branch": "master", "commit": "bf17c96a836ea27c0a7a2650ba385a7783ed322e" },
|
||||
"lazy-lsp.nvim": { "branch": "master", "commit": "8cfb2329a4cdc8e1eefe47dc18fb8e8c6dbdf183" },
|
||||
"lazy.nvim": { "branch": "main", "commit": "077102c5bfc578693f12377846d427f49bc50076" },
|
||||
"lualine.nvim": { "branch": "master", "commit": "2a5bae925481f999263d6f5ed8361baef8df4f83" },
|
||||
|
|
|
|||
|
|
@ -1,4 +1,3 @@
|
|||
require("nico.opts")
|
||||
require("nico.bind")
|
||||
require("nico.txt.init")
|
||||
require("nico.lazy_init")
|
||||
|
|
|
|||
5
stow/.config/nvim/lua/nico/lazy/headlines.lua
Normal file
5
stow/.config/nvim/lua/nico/lazy/headlines.lua
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
return {
|
||||
"lukas-reineke/headlines.nvim",
|
||||
dependencies = "nvim-treesitter/nvim-treesitter",
|
||||
config = true
|
||||
}
|
||||
|
|
@ -21,6 +21,11 @@ set -g history-limit 100000
|
|||
set -g base-index 1
|
||||
setw -g pane-base-index 1
|
||||
|
||||
# fix undercurls: https://github.com/folke/tokyonight.nvim#fix-undercurls-in-tmux
|
||||
set -g default-terminal "${TERM}"
|
||||
set -as terminal-overrides ',*:Smulx=\E[4::%p1%dm'
|
||||
set -as terminal-overrides ',*:Setulc=\E[58::2::%p1%{65536}%/%d::%p1%{256}%/%{255}%&%d::%p1%{255}%&%d%;m'
|
||||
|
||||
# plugins
|
||||
# got from: https://github.com/tmux-plugins/tpm/blob/master/docs/automatic_tpm_installation.md, changed to a more sensible install dir
|
||||
if "test ! -d ~/.local/share/tmux/plugins/tpm" \
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue