Compare commits
6 Commits
9868f6210d
...
c2df999cbb
Author | SHA1 | Date |
---|---|---|
Alex | c2df999cbb | |
Alex | bb73de624c | |
Alex | accae832ca | |
alex | e55dbe39bc | |
alex | 743c072019 | |
alex | 8ba871e868 |
|
@ -1,4 +1,4 @@
|
||||||
profile desk {
|
profile desk {
|
||||||
output "Ancor Communications Inc VE248 DCLMQS000288" enable mode 1920x1080 position 0,0
|
output "Ancor Communications Inc VE248 DCLMQS000292" enable mode 1920x1080 position 0,0
|
||||||
output "Ancor Communications Inc VE248 DCLMQS000292" enable mode 1920x1080 position 1920,0
|
output "Ancor Communications Inc VE248 DCLMQS000288" enable mode 1920x1080 position 1920,0
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,11 @@
|
||||||
|
[Default Applications]
|
||||||
|
inode/directory=thunar.desktop
|
||||||
|
application/x-gnome-saved-search=thunar.desktop
|
||||||
|
video/=mpv.desktop
|
||||||
|
image/=imv.desktop
|
||||||
|
video/quicktime=com.brave.Browser.desktop
|
||||||
|
|
||||||
|
[Added Associations]
|
||||||
|
video/quicktime=com.brave.Browser.desktop;
|
||||||
|
image/png=imv.desktop;
|
||||||
|
image/webp=imv.desktop;
|
|
@ -1,4 +1,4 @@
|
||||||
music_directory "~/media/audio"
|
music_directory "~/Music"
|
||||||
playlist_directory "~/.config/mpd/playlists/"
|
playlist_directory "~/.config/mpd/playlists/"
|
||||||
|
|
||||||
auto_update "yes"
|
auto_update "yes"
|
||||||
|
|
|
@ -29,7 +29,7 @@ color listfocus_unread yellow default bold
|
||||||
color info red black bold
|
color info red black bold
|
||||||
color article white default bold
|
color article white default bold
|
||||||
|
|
||||||
browser linkhandler
|
browser browser.sh
|
||||||
macro , open-in-browser
|
macro , open-in-browser
|
||||||
macro t set browser "qndl" ; open-in-browser ; set browser linkhandler
|
macro t set browser "qndl" ; open-in-browser ; set browser linkhandler
|
||||||
macro a set browser "tsp yt-dlp --embed-metadata -xic -f bestaudio/best --restrict-filenames" ; open-in-browser ; set browser linkhandler
|
macro a set browser "tsp yt-dlp --embed-metadata -xic -f bestaudio/best --restrict-filenames" ; open-in-browser ; set browser linkhandler
|
||||||
|
|
|
@ -4,7 +4,7 @@ local capabilities = require("plugins.configs.lspconfig").capabilities
|
||||||
local lspconfig = require "lspconfig"
|
local lspconfig = require "lspconfig"
|
||||||
|
|
||||||
-- if you just want default config for the servers then put them in a table
|
-- if you just want default config for the servers then put them in a table
|
||||||
local servers = { "html", "cssls", "tsserver", "clangd", "hls" }
|
local servers = { "html", "cssls", "tsserver", "clangd", "hls", "gopls" }
|
||||||
|
|
||||||
for _, lsp in ipairs(servers) do
|
for _, lsp in ipairs(servers) do
|
||||||
lspconfig[lsp].setup {
|
lspconfig[lsp].setup {
|
||||||
|
|
|
@ -5,10 +5,12 @@
|
||||||
-- pattern = "*",
|
-- pattern = "*",
|
||||||
-- command = "tabdo wincmd =",
|
-- command = "tabdo wincmd =",
|
||||||
-- })
|
-- })
|
||||||
local opt = vim.opt
|
local opt = vim.opt --equivalent to :set
|
||||||
|
|
||||||
opt.tabstop = 4
|
opt.tabstop = 4
|
||||||
opt.shiftwidth = 4
|
opt.shiftwidth = 4
|
||||||
opt.expandtab = true
|
opt.expandtab = true
|
||||||
|
|
||||||
opt.colorcolumn = "80"
|
opt.colorcolumn = "80"
|
||||||
|
|
||||||
|
opt.textwidth = 80
|
||||||
|
|
|
@ -9,4 +9,5 @@ M.general = {
|
||||||
|
|
||||||
-- more keybinds!
|
-- more keybinds!
|
||||||
|
|
||||||
|
|
||||||
return M
|
return M
|
||||||
|
|
|
@ -50,10 +50,10 @@ exec_always {
|
||||||
# Example configuration:
|
# Example configuration:
|
||||||
#
|
#
|
||||||
exec swayidle -w \
|
exec swayidle -w \
|
||||||
timeout 900 'waylock &' \
|
timeout 900 'swaylock &' \
|
||||||
timeout 1200 'swaymsg "output * dpms off"' \
|
timeout 1200 'swaymsg "output * dpms off"' \
|
||||||
resume 'swaymsg "output * dpms on"' \
|
resume 'swaymsg "output * dpms on"' \
|
||||||
before-sleep 'waylock &'
|
before-sleep 'swaylock &'
|
||||||
|
|
||||||
# This will lock your screen after 300 seconds of inactivity, then turn off
|
# This will lock your screen after 300 seconds of inactivity, then turn off
|
||||||
# your displays after another 300 seconds, and turn your screens back on when
|
# your displays after another 300 seconds, and turn your screens back on when
|
||||||
|
@ -98,8 +98,8 @@ xwayland enable
|
||||||
# Basics:
|
# Basics:
|
||||||
#
|
#
|
||||||
# Start a terminal
|
# Start a terminal
|
||||||
bindsym $mod+Return exec $term -e distrobox enter main
|
bindsym $mod+Return exec sh open-terminal.sh main
|
||||||
bindsym $mod+Shift+Return exec $term
|
bindsym $mod+Shift+Return exec sh open-terminal.sh
|
||||||
|
|
||||||
# Kill focused window
|
# Kill focused window
|
||||||
bindsym $mod+Shift+q kill
|
bindsym $mod+Shift+q kill
|
||||||
|
@ -303,10 +303,15 @@ gaps outer 10
|
||||||
#border
|
#border
|
||||||
default_border pixel 2
|
default_border pixel 2
|
||||||
|
|
||||||
|
|
||||||
|
#for_window [shell="^((?!xdg_shell).)*$"] title_format "%title :: %shell"
|
||||||
|
for_window [shell=".*"] title_format "%title :: %shell"
|
||||||
|
|
||||||
#set windows to float by default
|
#set windows to float by default
|
||||||
for_window [class="Matplotlib"] floating enable
|
for_window [class="Matplotlib"] floating enable
|
||||||
#for_window [class="Steam"] floating enable
|
#for_window [class="Steam"] floating enable
|
||||||
|
|
||||||
|
|
||||||
#input config
|
#input config
|
||||||
input type:pointer accel_profile flat
|
input type:pointer accel_profile flat
|
||||||
input type:pointer pointer_accel -0.5
|
input type:pointer pointer_accel -0.5
|
||||||
|
|
|
@ -60,7 +60,8 @@ export SFEED_URL_FILE="$HOME/.local/share/sfeed/read"
|
||||||
|
|
||||||
#set programs
|
#set programs
|
||||||
export EDITOR=nvim
|
export EDITOR=nvim
|
||||||
export BROWSER="browser.sh"
|
#export BROWSER="browser.sh"
|
||||||
|
export BROWSER="com.brave.Browser"
|
||||||
|
|
||||||
|
|
||||||
#lf icons
|
#lf icons
|
||||||
|
|
|
@ -141,4 +141,6 @@ source $ZSH/oh-my-zsh.sh
|
||||||
# To customize prompt, run `p10k configure` or edit ~/.p10k.zsh.
|
# To customize prompt, run `p10k configure` or edit ~/.p10k.zsh.
|
||||||
[[ ! -f ~/.config/zsh/.p10k.zsh ]] || source ~/.config/zsh/.p10k.zsh
|
[[ ! -f ~/.config/zsh/.p10k.zsh ]] || source ~/.config/zsh/.p10k.zsh
|
||||||
|
|
||||||
|
[ -f ~/.zprofile.local ] && source ~/.zprofile.local
|
||||||
|
|
||||||
cd "$HOME"
|
cd "$HOME"
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
Subproject commit 992a388711923272e6a947712f6811f4fc5967a4
|
Subproject commit 373cbb591a4ecf0a2559c0bbc050a350c3b1871b
|
Loading…
Reference in New Issue