This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Install requirements | |
paru -S qemu-full qemu-emulators-full libvirt virt-manager virt-viewer dnsmasq vde2 bridge-utils openbsd-netcat | |
# Enable libvirtd | |
sudo systemctl enable libvirtd | |
sudo systemctl start libvirtd | |
# Add user to libvirt group | |
sudo usermod -aG libvirt $(whoami) | |
newgrp libvirt |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Place your key bindings in this file to override the defaultsauto[] | |
[ | |
{ | |
"key": "ctrl+shift+f5", | |
"command": "workbench.action.debug.stop", | |
"when": "inDebugMode && !focusedSessionIsAttach" | |
}, | |
{ | |
"key": "shift+f5", | |
"command": "-workbench.action.debug.stop", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"workbench.settings.applyToAllProfiles": [ | |
"workbench.colorTheme", | |
"workbench.iconTheme", | |
"workbench.activityBar.location", | |
"workbench.editor.showTabs", | |
"workbench.startupEditor", | |
"workbench.tips.enabled", | |
"workbench.tree.enableStickyScroll", | |
"workbench.tree.indent", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if vim.g.vscode then | |
-- Set the leader key to space | |
vim.g.mapleader = " " | |
vim.g.maplocalleader = " " | |
-- VSCode extension | |
-- https://github.com/vscode-neovim/vscode-neovim/issues/298 | |
vim.opt.clipboard:append("unnamedplus") | |
-- motion keys (left, down, up, right) |