Notes: Sumit Patel

Install .deb in Arch

  1. It's just an archive
bsdtar -xf "package_0.1.0-1_amd64.deb" data.tar.xz
tar xf data.tar.xz
Read more…

Setting up nvim for java

  1. Installjdtls from the mason using :MasonInstall jdtls or :Mason
  2. Then add jdtls in list of lsp's :
local servers = { 'clangd', 'rust_analyzer', 'pyright', 'ts_ls', 'gopls', 'jdtls' }
Read more…

Fix: invisible working mouse Ft. Hyprland

Just add this entry anywhere in .config/hypr/hyprland.conf:

cursor {
    no_hardware_cursors = true
}

Flash image to partition, and boot with grub manual entry

How to flash image (.iso) to paritition

  1. Create partition
sudo fdisk /dev/sda
Read more…

Easy dotfiles management

The easiest way to version control your dotfiles.

  1. Initialize empty repo at home
git init --bare $HOME/.dotfiles
Read more…