minor changes
This commit is contained in:
parent
8bfb0fcedf
commit
8ce30529f7
6 changed files with 30 additions and 27 deletions
|
@ -2,5 +2,5 @@
|
||||||
|
|
||||||
Xcursor.size: 14
|
Xcursor.size: 14
|
||||||
|
|
||||||
st.alpha: 0.95
|
st.alpha: 0.98
|
||||||
st.font: Roboto Mono Nerd Font Mono:style=Regular:pixelsize=18:antialias=true:autohint=true
|
st.font: Roboto Mono Nerd Font Mono:style=Regular:pixelsize=18:antialias=true:autohint=true
|
||||||
|
|
1
.config/fish/conf.d/rustup.fish
Normal file
1
.config/fish/conf.d/rustup.fish
Normal file
|
@ -0,0 +1 @@
|
||||||
|
source "$HOME/.cargo/env.fish"
|
|
@ -1,13 +1,13 @@
|
||||||
# This file contains fish universal variable definitions.
|
# This file contains fish universal variable definitions.
|
||||||
# VERSION: 3.0
|
# VERSION: 3.0
|
||||||
SETUVAR __fish_initialized:3400
|
SETUVAR __fish_initialized:3400
|
||||||
SETUVAR fish_color_autosuggestion:8F3F71
|
SETUVAR fish_color_autosuggestion:7C6F64
|
||||||
SETUVAR fish_color_cancel:\x1d
|
SETUVAR fish_color_cancel:\x1d
|
||||||
SETUVAR fish_color_command:89B482
|
SETUVAR fish_color_command:A9B665
|
||||||
SETUVAR fish_color_comment:D3869B
|
SETUVAR fish_color_comment:7C6F64
|
||||||
SETUVAR fish_color_cwd:\x1d
|
SETUVAR fish_color_cwd:\x1d
|
||||||
SETUVAR fish_color_cwd_root:red
|
SETUVAR fish_color_cwd_root:red
|
||||||
SETUVAR fish_color_end:E78A4E
|
SETUVAR fish_color_end:7C6F64
|
||||||
SETUVAR fish_color_error:EA6962
|
SETUVAR fish_color_error:EA6962
|
||||||
SETUVAR fish_color_escape:7DAEA3
|
SETUVAR fish_color_escape:7DAEA3
|
||||||
SETUVAR fish_color_gray:6e738d
|
SETUVAR fish_color_gray:6e738d
|
||||||
|
@ -18,9 +18,9 @@ SETUVAR fish_color_keyword:7DAEA3
|
||||||
SETUVAR fish_color_normal:D4BE98
|
SETUVAR fish_color_normal:D4BE98
|
||||||
SETUVAR fish_color_operator:A9B665
|
SETUVAR fish_color_operator:A9B665
|
||||||
SETUVAR fish_color_option:\x1d
|
SETUVAR fish_color_option:\x1d
|
||||||
SETUVAR fish_color_param:D3869B
|
SETUVAR fish_color_param:D4BE98
|
||||||
SETUVAR fish_color_quote:D8A657
|
SETUVAR fish_color_quote:89B482
|
||||||
SETUVAR fish_color_redirection:D4BE98
|
SETUVAR fish_color_redirection:E78A4E
|
||||||
SETUVAR fish_color_search_match:\x2d\x2dbackground\x3d504945
|
SETUVAR fish_color_search_match:\x2d\x2dbackground\x3d504945
|
||||||
SETUVAR fish_color_selection:\x2d\x2dbackground\x3d504945
|
SETUVAR fish_color_selection:\x2d\x2dbackground\x3d504945
|
||||||
SETUVAR fish_color_status:ed8796
|
SETUVAR fish_color_status:ed8796
|
||||||
|
|
|
@ -216,7 +216,7 @@ bindsym $mod2+Shift+k resize shrink height 10 px or 10 ppt
|
||||||
bindsym $mod2+Shift+l resize grow width 10 px or 10 ppt
|
bindsym $mod2+Shift+l resize grow width 10 px or 10 ppt
|
||||||
|
|
||||||
# window settings
|
# window settings
|
||||||
gaps inner 2
|
gaps inner 1
|
||||||
gaps top 32
|
gaps top 32
|
||||||
|
|
||||||
assign [class="tidal-hifi"] 4
|
assign [class="tidal-hifi"] 4
|
||||||
|
|
|
@ -137,21 +137,21 @@ return {
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
|
|
||||||
{
|
-- {
|
||||||
"zbirenbaum/copilot.lua",
|
-- "zbirenbaum/copilot.lua",
|
||||||
event = "InsertEnter",
|
-- event = "InsertEnter",
|
||||||
config = function()
|
-- config = function()
|
||||||
require("copilot").setup({
|
-- require("copilot").setup({
|
||||||
suggestion = {
|
-- suggestion = {
|
||||||
enabled = true,
|
-- enabled = true,
|
||||||
auto_trigger = true,
|
-- auto_trigger = true,
|
||||||
keymap = {
|
-- keymap = {
|
||||||
accept = "<C-q>",
|
-- accept = "<C-q>",
|
||||||
},
|
-- },
|
||||||
},
|
-- },
|
||||||
})
|
-- })
|
||||||
end,
|
-- end,
|
||||||
},
|
-- },
|
||||||
{
|
{
|
||||||
"neovim/nvim-lspconfig",
|
"neovim/nvim-lspconfig",
|
||||||
dependencies = {
|
dependencies = {
|
||||||
|
|
|
@ -7,10 +7,12 @@ if [ -f /usr/bin/envycontrol ]; then
|
||||||
xrandr --auto
|
xrandr --auto
|
||||||
xrandr --output HDMI-0 --above eDP-1-1
|
xrandr --output HDMI-0 --above eDP-1-1
|
||||||
xrandr --output HDMI-0 --primary
|
xrandr --output HDMI-0 --primary
|
||||||
|
else
|
||||||
|
if [[ -n $(xrandr --listactivemonitors | grep HDMI-1-0) ]]; then
|
||||||
|
xrandr --output eDP-1 --off --output HDMI-1-0 --auto
|
||||||
else
|
else
|
||||||
xrandr --auto
|
xrandr --auto
|
||||||
xrandr --output HDMI-1-0 --above eDP-1
|
fi
|
||||||
xrandr --output HDMI-1-0 --primary
|
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue