Compare commits

..

No commits in common. "b71acbc7ad04bf0f8262279e3a495733c720cd8d" and "89cb8a89d2da20a299782b0c7cc6da3319f94a99" have entirely different histories.

6 changed files with 4 additions and 22 deletions

View File

@ -59,7 +59,3 @@ bindsym $mod+m exec --no-startup-id pavucontrol -t 3
bindsym $mod+d exec --no-startup-id i3-dmenu-desktop --dmenu dmenu
# Open Galculator
bindsym XF86Calculator exec --no-startup-id galculator
# Open tidal-hifi
# This keybindg is rather unusual as it should imply "move window to $wstidal",
# but because this workspace should only be used for tidal-hifi, it's okay.
bindsym Shift+$mod+n exec --no-startup-id tidal-hifi

View File

@ -5,8 +5,6 @@ set $ws02 ""
set $ws03 ""
set $ws04 ""
set $ws05 ""
# Workspace solely used for tidal-hifi
set $wstidal "T"
set $ws11 "α"
set $ws12 "β"
set $ws13 "γ"
@ -23,7 +21,6 @@ workspace $ws02 output primary
workspace $ws03 output primary
workspace $ws04 output primary
workspace $ws05 output primary
workspace $wstidal output primary
workspace $ws11 output eDP-1-1
workspace $ws12 output eDP-1-1
workspace $ws13 output eDP-1-1
@ -52,7 +49,7 @@ bindsym $mod+Shift+l move right
bindsym $mod+f fullscreen toggle
# kill focused window
bindsym $mod+x kill
bindsym Shift+$mod+x kill
# toggle tiling / floating
bindsym $mod+Shift+space floating toggle
@ -84,7 +81,6 @@ bindsym $mod+u workspace $ws02
bindsym $mod+i workspace $ws03
bindsym $mod+o workspace $ws04
bindsym $mod+p workspace $ws05
bindsym $mod+n workspace $wstidal
# move focused container to main workspace
bindsym $mod+Shift+y move container to workspace $ws01
@ -139,7 +135,3 @@ mode "HDMI-0" {
}
bindsym $mod+e mode "eDP-1-1"
# Force tidal-hifi to always spawn on $wstidal
assign [class="tidal-hifi"] $wstidal
no_focus [class="tidal-hifi"]

View File

@ -36,11 +36,6 @@ require'lspconfig'.hls.setup{
}
}
}
-- Pacman: vieter-vls (requires my Vieter repository)
-- GH: https://github.com/vlang/vls
require'lspconfig'.vls.setup {
cmd = {'vls'}
}
-- Pacman: rust-analyzer
-- GH: https://github.com/rust-analyzer/rust-analyzer
require'lspconfig'.rust_analyzer.setup{on_attach = on_attach}

View File

@ -11,8 +11,7 @@ g.NERDTreeIgnore = {
'^\\.stack-work$[[dir]]', '\\.lock$',
'^CMakeFiles$[[dir]]', '^CMakeCache.txt$[[file]]',
'.pdf$[[file]]',
'^node_modules$[[dir]]',
'\\.o$'
'^node_modules$[[dir]]'
}
g.NERDTreeShowHidden = 1

View File

@ -1,3 +1,3 @@
local g = vim.g
g.v_autofmt_bufwritepre = 0
g.v_autofmt_bufwritepre = 1

View File

@ -5,7 +5,7 @@ g.mapleader = " "
g.maplocalleader = "\\<tab>"
-- I often use non-standard shells that don't play nicely wiht certain features
-- o.shell = "/bin/bash"
o.shell = "/bin/bash"
-- Centers your cursor whenever possible
-- 999 is just a really large number (I think it's amount of lines or something)