Compare commits

...

7 commits

5 changed files with 40 additions and 7 deletions

View file

@ -0,0 +1,4 @@
theme = "rose_pine"
[editor.lsp]
display-messages = true

View file

@ -0,0 +1,26 @@
[[language]]
name = "javascript"
auto-format = true
formatter = { command = 'prettier', args = ["--parser=javascript"] }
[[language]]
name = "typescript"
auto-format = true
formatter = { command = 'prettier', args = ["--parser=typescript"] }
[[language]]
name = "html"
formatter = { command = 'prettier', args = ["--parser=html"] }
[[language]]
name = "css"
formatter = { command = 'prettier', args = ["--parser=css"] }
[[language]]
name = "json"
formatter = { command = 'prettier', args = ["--parser=json"] }
[[language]]
name = "go"
auto-format = true
formatter = { command = 'goimports' }

View file

@ -36,6 +36,7 @@ input * {
repeat_delay 290
repeat_rate 30
natural_scroll on
xkb_variant altgr-intl
}
### Key bindings
@ -115,9 +116,9 @@ input * {
bindsym $mod+comma workspace number 2
bindsym $mod+period workspace number 3
bindsym $mod+apostrophe workspace number 4
# bindsym $mod+5 workspace number 5
# bindsym $mod+6 workspace number 6
# bindsym $mod+7 workspace number 7
bindsym $mod+5 workspace number 5
bindsym $mod+6 workspace number 6
bindsym $mod+7 workspace number 7
# bindsym $mod+8 workspace "8: comms"
# bindsym $mod+9 workspace "9: media"
# bindsym $mod+0 workspace number 10
@ -126,9 +127,9 @@ input * {
bindsym $mod+Shift+comma move container to workspace number 2
bindsym $mod+Shift+period move container to workspace number 3
bindsym $mod+Shift+apostrophe move container to workspace number 4
# bindsym $mod+Shift+5 move container to workspace number 5
# bindsym $mod+Shift+6 move container to workspace number 6
# bindsym $mod+Shift+7 move container to workspace number 7
bindsym $mod+Shift+5 move container to workspace number 5
bindsym $mod+Shift+6 move container to workspace number 6
bindsym $mod+Shift+7 move container to workspace number 7
# bindsym $mod+Shift+8 move container to workspace "8: comms"
# bindsym $mod+Shift+9 move container to workspace "9: media"
# bindsym $mod+Shift+0 move container to workspace number 10

View file

@ -12,7 +12,7 @@ export PATH="$PNPM_HOME:$PATH"
export ZEIT_DB=~/Sync/zeit.db
export EDITOR=kak
export EDITOR=hx
export FZF_DEFAULT_COMMAND='rg -L --hidden --files'
export FZF_DEFAULT_OPTS='--multi --layout=reverse --preview-window=down:60%'

2
.zshrc
View file

@ -46,6 +46,8 @@ alias a='nohup nautilus "$(pwd)" >/dev/null &; disown'
alias g='git'
alias gc='git commit'
alias gcp='git commit -p'
alias gr='git restore'
alias grp='git restore -p'
alias gco='git checkout'
alias gl='git log'
alias gs='git status'