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
|
||||
|
||||
st.alpha: 0.95
|
||||
st.alpha: 0.98
|
||||
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.
|
||||
# VERSION: 3.0
|
||||
SETUVAR __fish_initialized:3400
|
||||
SETUVAR fish_color_autosuggestion:8F3F71
|
||||
SETUVAR fish_color_autosuggestion:7C6F64
|
||||
SETUVAR fish_color_cancel:\x1d
|
||||
SETUVAR fish_color_command:89B482
|
||||
SETUVAR fish_color_comment:D3869B
|
||||
SETUVAR fish_color_command:A9B665
|
||||
SETUVAR fish_color_comment:7C6F64
|
||||
SETUVAR fish_color_cwd:\x1d
|
||||
SETUVAR fish_color_cwd_root:red
|
||||
SETUVAR fish_color_end:E78A4E
|
||||
SETUVAR fish_color_end:7C6F64
|
||||
SETUVAR fish_color_error:EA6962
|
||||
SETUVAR fish_color_escape:7DAEA3
|
||||
SETUVAR fish_color_gray:6e738d
|
||||
|
@ -18,9 +18,9 @@ SETUVAR fish_color_keyword:7DAEA3
|
|||
SETUVAR fish_color_normal:D4BE98
|
||||
SETUVAR fish_color_operator:A9B665
|
||||
SETUVAR fish_color_option:\x1d
|
||||
SETUVAR fish_color_param:D3869B
|
||||
SETUVAR fish_color_quote:D8A657
|
||||
SETUVAR fish_color_redirection:D4BE98
|
||||
SETUVAR fish_color_param:D4BE98
|
||||
SETUVAR fish_color_quote:89B482
|
||||
SETUVAR fish_color_redirection:E78A4E
|
||||
SETUVAR fish_color_search_match:\x2d\x2dbackground\x3d504945
|
||||
SETUVAR fish_color_selection:\x2d\x2dbackground\x3d504945
|
||||
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
|
||||
|
||||
# window settings
|
||||
gaps inner 2
|
||||
gaps inner 1
|
||||
gaps top 32
|
||||
|
||||
assign [class="tidal-hifi"] 4
|
||||
|
|
|
@ -137,21 +137,21 @@ return {
|
|||
end,
|
||||
},
|
||||
|
||||
{
|
||||
"zbirenbaum/copilot.lua",
|
||||
event = "InsertEnter",
|
||||
config = function()
|
||||
require("copilot").setup({
|
||||
suggestion = {
|
||||
enabled = true,
|
||||
auto_trigger = true,
|
||||
keymap = {
|
||||
accept = "<C-q>",
|
||||
},
|
||||
},
|
||||
})
|
||||
end,
|
||||
},
|
||||
-- {
|
||||
-- "zbirenbaum/copilot.lua",
|
||||
-- event = "InsertEnter",
|
||||
-- config = function()
|
||||
-- require("copilot").setup({
|
||||
-- suggestion = {
|
||||
-- enabled = true,
|
||||
-- auto_trigger = true,
|
||||
-- keymap = {
|
||||
-- accept = "<C-q>",
|
||||
-- },
|
||||
-- },
|
||||
-- })
|
||||
-- end,
|
||||
-- },
|
||||
{
|
||||
"neovim/nvim-lspconfig",
|
||||
dependencies = {
|
||||
|
|
|
@ -8,9 +8,11 @@ if [ -f /usr/bin/envycontrol ]; then
|
|||
xrandr --output HDMI-0 --above eDP-1-1
|
||||
xrandr --output HDMI-0 --primary
|
||||
else
|
||||
xrandr --auto
|
||||
xrandr --output HDMI-1-0 --above eDP-1
|
||||
xrandr --output HDMI-1-0 --primary
|
||||
if [[ -n $(xrandr --listactivemonitors | grep HDMI-1-0) ]]; then
|
||||
xrandr --output eDP-1 --off --output HDMI-1-0 --auto
|
||||
else
|
||||
xrandr --auto
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue