diff --git a/.config/foot/foot.ini b/.config/foot/foot.ini index 25b0673..25b7348 100644 --- a/.config/foot/foot.ini +++ b/.config/foot/foot.ini @@ -1,5 +1,7 @@ # -*- conf -*- +include=/usr/share/foot/themes/nord + # shell=$SHELL (if set, otherwise user's default shell from /etc/passwd) # term=foot (or xterm-256color if built with -Dterminfo=disabled) # login-shell=no @@ -154,29 +156,29 @@ color = 080808 9e9e9e # urls= [colors] -foreground = b2b2b2 -background = 000000 +# foreground = b2b2b2 +# background = 000000 # selection-foreground = 080808 # selection-background = b2ceee -regular0 = 323437 -regular1 = ff5454 -regular2 = 8cc85f -regular3 = e3c78a -regular4 = 80a0ff -regular5 = d183e8 -regular6 = 79dac8 -regular7 = c6c6c6 +# regular0 = 323437 +# regular1 = ff5454 +# regular2 = 8cc85f +# regular3 = e3c78a +# regular4 = 80a0ff +# regular5 = d183e8 +# regular6 = 79dac8 +# regular7 = c6c6c6 -bright0 = 949494 -bright1 = ff5189 -bright2 = 36c692 -bright3 = c2c292 -bright4 = 74b2ff -bright5 = ae81ff -bright6 = 85dc85 -bright7 = e4e4e4 +# bright0 = 949494 +# bright1 = ff5189 +# bright2 = 36c692 +# bright3 = c2c292 +# bright4 = 74b2ff +# bright5 = ae81ff +# bright6 = 85dc85 +# bright7 = e4e4e4 [csd] # preferred=server diff --git a/.config/nvim/lua/plugins/nord.lua b/.config/nvim/lua/plugins/nord.lua index 93f5d2f..8671257 100644 --- a/.config/nvim/lua/plugins/nord.lua +++ b/.config/nvim/lua/plugins/nord.lua @@ -1,9 +1,6 @@ return { - "bluz71/vim-moonfly-colors", - name = "moonfly", - lazy = false, - priority = 1000, + 'shaunsingh/nord.nvim', config = function() - vim.cmd [[colorscheme moonfly]] - end, + vim.cmd [[colorscheme nord]] + end } diff --git a/.tmux.conf b/.tmux.conf index 19761de..ec7f10d 100644 --- a/.tmux.conf +++ b/.tmux.conf @@ -1,24 +1,10 @@ set -g @plugin 'tmux-plugins/tpm' set -g @plugin 'tmux-plugins/tmux-sensible' set -g @plugin 'tmux-plugins/tmux-yank' +set -g @plugin "arcticicestudio/nord-tmux" run '~/.tmux/plugins/tpm/tpm' -# Set status line, windows, pane and message colors. -set -g message-style "bg=#1c1c1c,fg=#9c9c9c" -set -g pane-active-border-style "bg=#080808,fg=#80a0ff" -set -g pane-border-style "bg=#080808,fg=#303030" -set -g status-style "bg=#1c1c1c,fg=#9c9c9c" -setw -g window-status-activity-style none -setw -g window-status-current-style "bg=#353946,fg=#80a0ff" -# Set active and inactive window style. -setw -g window-status-current-format " #I #[fg=#9c9c9c]❯ #[fg=default]#W #[fg=#e65e72]#{?window_flags,#{window_flags}, }#[fg=default] " -setw -g window-status-format " #I ❯ #W #[fg=#e65e72]#{?window_flags,#{window_flags}, }#[fg=default] " - -# Set status bar components and style. -set -g status-left "" -set -g status-right "" - set-option -a terminal-features 'foot:RGB' set-option -g prefix C-s