diff --git a/.config/i3/conf.d/keybinds.conf b/.config/i3/conf.d/keybinds.conf index 76bb86d..b70de45 100644 --- a/.config/i3/conf.d/keybinds.conf +++ b/.config/i3/conf.d/keybinds.conf @@ -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 diff --git a/.config/i3/conf.d/workspaces.conf b/.config/i3/conf.d/workspaces.conf index 5eac158..c2f3c9a 100644 --- a/.config/i3/conf.d/workspaces.conf +++ b/.config/i3/conf.d/workspaces.conf @@ -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"] diff --git a/.config/nvim/lua/config/lspconfig.lua b/.config/nvim/lua/config/lspconfig.lua index eb1c745..a31420a 100644 --- a/.config/nvim/lua/config/lspconfig.lua +++ b/.config/nvim/lua/config/lspconfig.lua @@ -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} diff --git a/.config/nvim/lua/config/nerdtree.lua b/.config/nvim/lua/config/nerdtree.lua index 25ecb6f..ac8bc2b 100644 --- a/.config/nvim/lua/config/nerdtree.lua +++ b/.config/nvim/lua/config/nerdtree.lua @@ -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 diff --git a/.config/nvim/lua/config/v.lua b/.config/nvim/lua/config/v.lua index 7f3142c..8f4c5c1 100644 --- a/.config/nvim/lua/config/v.lua +++ b/.config/nvim/lua/config/v.lua @@ -1,3 +1,3 @@ local g = vim.g -g.v_autofmt_bufwritepre = 0 +g.v_autofmt_bufwritepre = 1 diff --git a/.config/nvim/lua/settings.lua b/.config/nvim/lua/settings.lua index 723d753..b3e24e5 100644 --- a/.config/nvim/lua/settings.lua +++ b/.config/nvim/lua/settings.lua @@ -5,7 +5,7 @@ g.mapleader = " " g.maplocalleader = "\\" -- 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)