- Qualcomm Inc
QCNFA765
- Kernel driver in use:
ath11k_pci
iwctl device list
iwctl station wlan0 scan
-- override native command with "cabbrev" example | |
-- delete buffers without losing window layout | |
Lazy.use { | |
"echasnovski/mini.bufremove", | |
cmd = { "Bdelete", "Bwipeout" }, | |
keys = { | |
{ "<leader>q", "<cmd>Bdelete<cr>", silent = true, desc = "Quit Buffer" }, | |
{ "<leader>e", "<cmd>Bwipeout<cr>", silent = true, desc = "Wipeout Buffer" } | |
}, |
#Requires AutoHotkey v2.0 | |
; Send <Alt+F13> with <Alt+Escape> - Windows 11 | |
; Allows to use <Alt+Escape> mapping in Neovim on Windows 11 | |
!Esc:: | |
{ | |
static skip := false | |
if skip |
# Maintainer: Your Name <> | |
# Contributor: Arch Linux User <> | |
pkgname=nodejs-npm-fake | |
pkgver=1.0.0 | |
pkgrel=1 | |
pkgdesc="A dummy package for Node.js and npm (fake version)" | |
arch=('any') | |
url="https://nodejs.org/" | |
license=('MIT') |
---Utility for keymap creation. | |
---@param lhs string | |
---@param rhs string|function | |
---@param opts string|table | |
---@param mode? string|string[] | |
local function keymap(lhs, rhs, opts, mode) | |
opts = type(opts) == 'string' and { desc = opts } | |
or vim.tbl_extend('error', opts --[[@as table]], { buffer = bufnr }) | |
mode = mode or 'n' | |
vim.keymap.set(mode, lhs, rhs, opts) |