Update nvim and neovide configs

This commit is contained in:
Grafcube 2024-05-20 18:22:23 +05:30
parent 44a1b8012c
commit 7f5bee580f
Signed by: grafcube
GPG Key ID: E383688F2878A440
6 changed files with 28 additions and 5 deletions

View File

@ -0,0 +1,11 @@
wsl = false
no-multigrid = false
vsync = true
idle = true
frame = "full"
tabs = false
[font]
normal = "JetBrainsMono NFM"
size = 13
hinting = "full"

View File

@ -48,8 +48,8 @@ if [[ "$XDG_SESSION_TYPE" == 'wayland' ]]; then
export MOZ_ENABLE_WAYLAND=1
export CLUTTER_BACKEND=wayland
export QT_QPA_PLATFORM="wayland;xcb"
export XCURSOR_SIZE=1
export XCURSOR_THEME=breeze_cursors
export XCURSOR_SIZE=22
export XCURSOR_THEME=Bibata-Modern-Classic
export ECORE_EVAS_ENGINE=wayland
export ELM_ENGINE=wayland_egl
export SDL_VIDEODRIVER=wayland

View File

@ -125,6 +125,18 @@ export AUTO_NOTIFY_BODY="Completed in %elapsed seconds with exit code %exit_code
export AUTO_NOTIFY_EXPIRE_TIME=10000
AUTO_NOTIFY_IGNORE+=("man" "bat" "nvim" "nv" "doasedit" "xplr" "btop" "nix-shell" "gap" "gd" "gds" "chezmoi cd" "nix develop" "distrobox enter")
if ! [[ -x namedicon ]]; then
AUTO_NOTIFY_ICON_SUCCESS=$(namedicon object-select-symbolic)
if [ $? -eq 0 ]; then
export AUTO_NOTIFY_ICON_SUCCESS
fi
AUTO_NOTIFY_ICON_FAILURE=$(namedicon process-stop-symbolic)
if [ $? -eq 0 ]; then
export AUTO_NOTIFY_ICON_FAILURE
fi
fi
export TIMEFMT=$'\n################\nCPU\t%P\nuser\t%uU\nsystem\t%uS\ntotal\t%uE'
alias rmdanger='\rm'

View File

@ -1,3 +1,3 @@
#!/bin/sh
exec neovide -- "$@"
exec neovide --fork -- "$@"

View File

@ -1,3 +1,3 @@
#!/bin/sh
exec neovide --no-fork -- "$@"
exec neovide -- "$@"

View File

@ -1,3 +1,3 @@
#!/usr/bin/env bash
ng --listen "$XDG_RUNTIME_DIR/godot.pipe"
ng --fork --listen "$XDG_RUNTIME_DIR/godot.pipe"