Compare commits
3 commits
7cb90a8687
...
4a5cd2f8f7
| Author | SHA1 | Date | |
|---|---|---|---|
| 4a5cd2f8f7 | |||
| 603b2c92d8 | |||
| c10241632e |
6 changed files with 24 additions and 14 deletions
|
|
@ -1,2 +0,0 @@
|
||||||
file:///home/wball/Documents
|
|
||||||
file:///home/wball/Downloads
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
show = ["Kernel", "Distribution", "Packages", "Terminal", "WindowManager", "Shell", "Uptime"]
|
|
||||||
Binary file not shown.
|
Before Width: | Height: | Size: 3.7 MiB |
|
|
@ -1,12 +1,22 @@
|
||||||
return {
|
return {
|
||||||
"catppuccin/nvim",
|
{
|
||||||
name = "catppuccin",
|
"Mofiqul/adwaita.nvim",
|
||||||
priority = 1000,
|
lazy = false,
|
||||||
config = function()
|
priority = 1000,
|
||||||
require("catppuccin").setup({
|
config = function()
|
||||||
transparent_background = true,
|
vim.g.adwaita_transparent = true
|
||||||
term_colors = true
|
vim.cmd([[colorscheme adwaita]])
|
||||||
})
|
end
|
||||||
vim.cmd.colorscheme("catppuccin")
|
},
|
||||||
end
|
{
|
||||||
|
"catppuccin/nvim",
|
||||||
|
name = "catppuccin",
|
||||||
|
priority = 1000,
|
||||||
|
config = function()
|
||||||
|
require("catppuccin").setup({
|
||||||
|
transparent_background = true,
|
||||||
|
term_colors = true
|
||||||
|
})
|
||||||
|
end
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -26,7 +26,10 @@ bind-key -T copy-mode-vi C-\\ select-pane -l
|
||||||
bind-key -T copy-mode-vi y send-keys -X copy-pipe-and-cancel "wl-copy && wl-paste -n | wl-copy -p"
|
bind-key -T copy-mode-vi y send-keys -X copy-pipe-and-cancel "wl-copy && wl-paste -n | wl-copy -p"
|
||||||
bind-key C-y run "wl-paste -n | tmux load-buffer - ; tmux paste-buffer"
|
bind-key C-y run "wl-paste -n | tmux load-buffer - ; tmux paste-buffer"
|
||||||
|
|
||||||
|
unbind C-b
|
||||||
|
set -g prefix C-j
|
||||||
|
|
||||||
set -g @plugin 'tmux-plugins/tpm'
|
set -g @plugin 'tmux-plugins/tpm'
|
||||||
set -g @plugin 'tmux-plugins/tmux-sensible'
|
set -g @plugin 'tmux-plugins/tmux-sensible'
|
||||||
set -g @plugin 'catppuccin/tmux'
|
set -g @plugin 'alexwforsythe/tmux-which-key'
|
||||||
run '~/.config/tmux/plugins/tpm/tpm'
|
run '~/.config/tmux/plugins/tpm/tpm'
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue