back to vim
This commit is contained in:
parent
f30c20d354
commit
6a57e95895
@ -15,6 +15,7 @@ PATH=$PATH:~/go/bin/
|
|||||||
PATH=$PATH:~/.nimble/bin/
|
PATH=$PATH:~/.nimble/bin/
|
||||||
PATH=$PATH:~/Documents/suckless/dylan/opendylan-2024.1/bin
|
PATH=$PATH:~/Documents/suckless/dylan/opendylan-2024.1/bin
|
||||||
PATH=$PATH:~/.config/emacs/bin/
|
PATH=$PATH:~/.config/emacs/bin/
|
||||||
|
PATH=$PATH:~/.mint/bin/
|
||||||
# don't put duplicate lines or lines starting with space in the history.
|
# don't put duplicate lines or lines starting with space in the history.
|
||||||
# See bash(1) for more options
|
# See bash(1) for more options
|
||||||
HISTCONTROL=ignoreboth
|
HISTCONTROL=ignoreboth
|
||||||
|
@ -12,6 +12,7 @@ if [ $(pgrep polybar) ]; then
|
|||||||
else
|
else
|
||||||
sleep .5 && polybar mainbar &
|
sleep .5 && polybar mainbar &
|
||||||
fi
|
fi
|
||||||
|
pipewire-launch || pipewire-launch restart &
|
||||||
#MONITOR=DP-5 polybar example &
|
#MONITOR=DP-5 polybar example &
|
||||||
~/.fehbg
|
~/.fehbg
|
||||||
picom &
|
picom &
|
||||||
|
@ -895,15 +895,15 @@ xkb-options=['lv3:ralt_switch']
|
|||||||
clock-format='12h'
|
clock-format='12h'
|
||||||
color-scheme='default'
|
color-scheme='default'
|
||||||
cursor-size=24
|
cursor-size=24
|
||||||
cursor-theme='Chicago95_Animated_Hourglass_Cursors'
|
cursor-theme='Adwaita'
|
||||||
document-font-name='Cantarell 11'
|
document-font-name='Cantarell 11'
|
||||||
enable-animations=true
|
enable-animations=true
|
||||||
enable-hot-corners=true
|
enable-hot-corners=true
|
||||||
font-antialiasing='rgba'
|
font-antialiasing='rgba'
|
||||||
font-hinting='slight'
|
font-hinting='slight'
|
||||||
font-name='Ubuntu 10'
|
font-name='Ubuntu 10'
|
||||||
gtk-theme='rose-pine-gtk'
|
gtk-theme='Adwaita-dark'
|
||||||
icon-theme='rose-pine-icons'
|
icon-theme='Adwaita'
|
||||||
monospace-font-name='BigBlueTermPlus Nerd Font 12'
|
monospace-font-name='BigBlueTermPlus Nerd Font 12'
|
||||||
show-battery-percentage=true
|
show-battery-percentage=true
|
||||||
toolbar-style='text'
|
toolbar-style='text'
|
||||||
|
@ -42,3 +42,27 @@ pin = "46cf4ded12ee974a70bf8457263b67ad7ee0379d"
|
|||||||
|
|
||||||
[language.typst.queries]
|
[language.typst.queries]
|
||||||
path = "queries/typst"
|
path = "queries/typst"
|
||||||
|
|
||||||
|
# swift
|
||||||
|
[language.swift.grammar.source.git]
|
||||||
|
url = "https://github.com/alex-pinkus/tree-sitter-swift"
|
||||||
|
pin = "57c1c6d6ffa1c44b330182d41717e6fe37430704"
|
||||||
|
|
||||||
|
[language.swift.grammar]
|
||||||
|
path = "src"
|
||||||
|
compile = "cc"
|
||||||
|
compile_args = ["-c", "-fpic", "../scanner.c", "-I", ".."]
|
||||||
|
compile_flags = ["-O3"]
|
||||||
|
link = "cc"
|
||||||
|
link_args = ["-shared", "-fpic", "scanner.o", "-o", "swift.so"]
|
||||||
|
link_flags = ["-O3"]
|
||||||
|
|
||||||
|
[language.swift.queries.source.git]
|
||||||
|
url = "https://github.com/helix-editor/helix"
|
||||||
|
pin = "6bedca80646ce7350fb73029adf802ce7d9e241d"
|
||||||
|
|
||||||
|
# url = "https://github.com/alex-pinkus/tree-sitter-swift"
|
||||||
|
# pin = "57c1c6d6ffa1c44b330182d41717e6fe37430704"
|
||||||
|
|
||||||
|
[language.swift.queries]
|
||||||
|
path = "runtime/queries/swift"
|
||||||
|
@ -51,7 +51,7 @@ set-option global luar_interpreter luajit
|
|||||||
# eval %sh{ kak-tree-sitter -dksvvv --with-highlighting --with-text-objects --init $kak_session }
|
# eval %sh{ kak-tree-sitter -dksvvv --with-highlighting --with-text-objects --init $kak_session }
|
||||||
#eval %sh{ kak-tree-sitter -dks --with-text-objects --session $kak_session }
|
#eval %sh{ kak-tree-sitter -dks --with-text-objects --session $kak_session }
|
||||||
#eval %sh{ kak-tree-sitter -dks --with-highlighting --session $kak_session }
|
#eval %sh{ kak-tree-sitter -dks --with-highlighting --session $kak_session }
|
||||||
eval %sh{ kak-tree-sitter -dksvvv --init $kak_session }
|
eval %sh{ kak-tree-sitter -dksvvvv --init $kak_session }
|
||||||
# evaluate-commands %sh{
|
# evaluate-commands %sh{
|
||||||
# echo "colorscheme base16-$BASE16_THEME"
|
# echo "colorscheme base16-$BASE16_THEME"
|
||||||
# }
|
# }
|
||||||
@ -226,6 +226,12 @@ face global InfoDiagnosticHint Information
|
|||||||
face global InfoDiagnosticInformation Information
|
face global InfoDiagnosticInformation Information
|
||||||
face global InfoDiagnosticWarning Information
|
face global InfoDiagnosticWarning Information
|
||||||
|
|
||||||
|
hook -group lsp-filetype-swift global BufSetOption filetype=swift %{
|
||||||
|
set-option buffer lsp_servers %{
|
||||||
|
[sourcekit-lsp]
|
||||||
|
root_globs = [".git", ".hg"]
|
||||||
|
}
|
||||||
|
}
|
||||||
set-option global lsp_config %{
|
set-option global lsp_config %{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -31,6 +31,8 @@ lsp_config.hls.setup{}
|
|||||||
|
|
||||||
lsp_config.clojure_lsp.setup{}
|
lsp_config.clojure_lsp.setup{}
|
||||||
|
|
||||||
|
lsp_config.sourcekit.setup{}
|
||||||
|
|
||||||
local cmp = require("cmp")
|
local cmp = require("cmp")
|
||||||
local cmp_select = {behavior = cmp.SelectBehavior.Select}
|
local cmp_select = {behavior = cmp.SelectBehavior.Select}
|
||||||
local cmp_mappings = lsp.defaults.cmp_mappings({
|
local cmp_mappings = lsp.defaults.cmp_mappings({
|
||||||
|
@ -174,9 +174,5 @@ swaybg -m fill -i $HOME/Pictures/wallpapers/wallpaper &
|
|||||||
# pgrep creek || ( while $HOME/.config/river/bar.sh; do sleep 1; done ) | creek -fn 'Ubuntu:size=14' -nf 0xb8b8b8 -nb 0x282828 -ff 0x181818 -fb 0x7cafc2
|
# pgrep creek || ( while $HOME/.config/river/bar.sh; do sleep 1; done ) | creek -fn 'Ubuntu:size=14' -nf 0xb8b8b8 -nb 0x282828 -ff 0x181818 -fb 0x7cafc2
|
||||||
pipewire-launch &
|
pipewire-launch &
|
||||||
waybar &
|
waybar &
|
||||||
<<<<<<< Updated upstream
|
|
||||||
wlr-randr --output DP-1 --adaptive-sync enabled --mode 2560x1440@165Hz
|
wlr-randr --output DP-1 --adaptive-sync enabled --mode 2560x1440@165Hz
|
||||||
=======
|
|
||||||
wlr-randr --output eDP-1 --scale 1.5
|
|
||||||
dbus-update-activation-environment --systemd WAYLAND_DISPLAY XDG_CURRENT_DESKTOP='river'
|
dbus-update-activation-environment --systemd WAYLAND_DISPLAY XDG_CURRENT_DESKTOP='river'
|
||||||
>>>>>>> Stashed changes
|
|
||||||
|
@ -2,8 +2,4 @@
|
|||||||
[Icon Theme]
|
[Icon Theme]
|
||||||
Name=Default
|
Name=Default
|
||||||
Comment=Default Cursor Theme
|
Comment=Default Cursor Theme
|
||||||
<<<<<<< Updated upstream
|
Inherits=Adwaita
|
||||||
Inherits=Chicago95_Animated_Hourglass_Cursors
|
|
||||||
=======
|
|
||||||
Inherits=BreezeX-RosePineDawn-Linux
|
|
||||||
>>>>>>> Stashed changes
|
|
||||||
|
@ -2,5 +2,5 @@ xrdb -merge ~/.Xresources
|
|||||||
# /home/mikec/.scripts/startup.sh
|
# /home/mikec/.scripts/startup.sh
|
||||||
# exec awesome
|
# exec awesome
|
||||||
# exec dwm
|
# exec dwm
|
||||||
# exec bspwm
|
exec bspwm
|
||||||
exec icewm
|
# exec icewm
|
||||||
|
Loading…
x
Reference in New Issue
Block a user