Compare commits
No commits in common. "a78805ebccf00428b0ce5ed64ed409747eb7148c" and "4f0bfd4fdde6c633d6efbe466f94dd6013289312" have entirely different histories.
a78805ebcc
...
4f0bfd4fdd
3 changed files with 11 additions and 41 deletions
|
|
@ -8,7 +8,6 @@
|
||||||
syntax-theme = Solarized (dark)
|
syntax-theme = Solarized (dark)
|
||||||
[diff]
|
[diff]
|
||||||
colorMoved = default
|
colorMoved = default
|
||||||
tool = vimdiff
|
|
||||||
[interactive]
|
[interactive]
|
||||||
diffFilter = delta --color-only
|
diffFilter = delta --color-only
|
||||||
[color]
|
[color]
|
||||||
|
|
@ -42,9 +41,6 @@
|
||||||
[merge]
|
[merge]
|
||||||
conflictStyle = zdiff3
|
conflictStyle = zdiff3
|
||||||
ff = true
|
ff = true
|
||||||
tool = vimdiff
|
|
||||||
[mergetool "vimdiff"]
|
|
||||||
cmd = nvim -d $LOCAL $BASE $REMOTE $MERGED -c '$wincmd w' -c 'wincmd J'
|
|
||||||
[push]
|
[push]
|
||||||
default = simple
|
default = simple
|
||||||
[alias]
|
[alias]
|
||||||
|
|
|
||||||
|
|
@ -1,26 +0,0 @@
|
||||||
return {
|
|
||||||
"akinsho/git-conflict.nvim",
|
|
||||||
lazy = false,
|
|
||||||
opts = {
|
|
||||||
default_mappings = {
|
|
||||||
ours = "<leader>ho",
|
|
||||||
theirs = "<leader>ht",
|
|
||||||
none = "<leader>h0",
|
|
||||||
both = "<leader>hb",
|
|
||||||
next = "]x",
|
|
||||||
prev = "[x",
|
|
||||||
},
|
|
||||||
},
|
|
||||||
keys = {
|
|
||||||
{
|
|
||||||
"<leader>gx",
|
|
||||||
"<cmd>GitConflictListQf<cr>",
|
|
||||||
desc = "List Conflicts",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"<leader>gr",
|
|
||||||
"<cmd>GitConflictRefresh<cr>",
|
|
||||||
desc = "Refresh Conflicts",
|
|
||||||
},
|
|
||||||
},
|
|
||||||
}
|
|
||||||
|
|
@ -42,9 +42,9 @@ set -g allow-rename off
|
||||||
#bind C-y run "tmux save-buffer - | xclip -i"
|
#bind C-y run "tmux save-buffer - | xclip -i"
|
||||||
|
|
||||||
#move wayland clipbord into tmux buffer
|
#move wayland clipbord into tmux buffer
|
||||||
bind C-p run "tmux set-buffer \"$(wl-paste)\""
|
bind C-p run "tmux set-buffer \"$(wm_paste)\""
|
||||||
# move tmux copy buffer into wayland clipboard
|
# move tmux copy buffer into wayland clipboard
|
||||||
bind C-y run "tmux save-buffer - | wl-copy"
|
bind C-y run "tmux save-buffer - | wm_copy"
|
||||||
|
|
||||||
|
|
||||||
# loud or quiet?
|
# loud or quiet?
|
||||||
|
|
@ -54,13 +54,13 @@ set-option -g visual-silence off
|
||||||
set-window-option -g monitor-activity off
|
set-window-option -g monitor-activity off
|
||||||
set-option -g bell-action none
|
set-option -g bell-action none
|
||||||
|
|
||||||
#### COLOUR (Solarized dark)
|
#### COLOUR (Solarized light)
|
||||||
|
|
||||||
# default statusbar colors
|
# default statusbar colors
|
||||||
set-option -g status-style fg=yellow,bg=black #yellow and base02
|
set-option -g status-style fg=yellow,bg=white #yellow and base2
|
||||||
|
|
||||||
# default window title colors
|
# default window title colors
|
||||||
set-window-option -g window-status-style fg=brightblue,bg=default #base0 and default
|
set-window-option -g window-status-style fg=brightyellow,bg=default #base0 and default
|
||||||
#set-window-option -g window-status-style dim
|
#set-window-option -g window-status-style dim
|
||||||
|
|
||||||
# active window title colors
|
# active window title colors
|
||||||
|
|
@ -68,21 +68,21 @@ set-window-option -g window-status-current-style fg=brightred,bg=default #orange
|
||||||
#set-window-option -g window-status-current-style bright
|
#set-window-option -g window-status-current-style bright
|
||||||
|
|
||||||
# pane border
|
# pane border
|
||||||
set-option -g pane-border-style fg=black #base02
|
set-option -g pane-border-style fg=white #base2
|
||||||
set-option -g pane-active-border-style fg=brightgreen #base01
|
set-option -g pane-active-border-style fg=brightcyan #base1
|
||||||
|
|
||||||
# message text
|
# message text
|
||||||
set-option -g message-style fg=brightred,bg=black #orange and base01
|
set-option -g message-style fg=brightred,bg=white #orange and base2
|
||||||
|
|
||||||
# pane number display
|
# pane number display
|
||||||
set-option -g display-panes-active-colour brightred #orange
|
set-option -g display-panes-active-colour blue #blue
|
||||||
set-option -g display-panes-colour blue #blue
|
set-option -g display-panes-colour brightred #orange
|
||||||
|
|
||||||
# clock
|
# clock
|
||||||
set-window-option -g clock-mode-colour green #green
|
set-window-option -g clock-mode-colour green #green
|
||||||
|
|
||||||
# bell
|
# bell
|
||||||
set-window-option -g window-status-bell-style fg=black,bg=red #base02, red
|
set-window-option -g window-status-bell-style fg=white,bg=red #base2, red
|
||||||
|
|
||||||
# Set hyperlink support
|
# Set hyperlink support
|
||||||
set -ga terminal-features "*:hyperlinks"
|
set -ga terminal-features "*:hyperlinks"
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue