lmao arch time
This commit is contained in:
66
archinstall.json
Normal file
66
archinstall.json
Normal file
@@ -0,0 +1,66 @@
|
||||
{
|
||||
"audio": "pulseaudio",
|
||||
"bootloader": "grub-install",
|
||||
"custom-commands": [
|
||||
],
|
||||
"filesystem": "ext4",
|
||||
"gfx_driver": "Intel (open-source)",
|
||||
"swap": true,
|
||||
"hostname": "benk",
|
||||
"kernels": [
|
||||
"linux"
|
||||
],
|
||||
"keyboard-language": "en",
|
||||
"mirror-region": "United Kingdom",
|
||||
"nic": {
|
||||
"NetworkManager": true,
|
||||
},
|
||||
"ntp": true,
|
||||
"packages": [
|
||||
"yay",
|
||||
"git",
|
||||
"wget",
|
||||
"curl",
|
||||
"zsh",
|
||||
"zsh-vi-mode",
|
||||
"base-devel",
|
||||
"rust-git",
|
||||
"cmake-git",
|
||||
"exa",
|
||||
"bluez",
|
||||
"bluez-utils",
|
||||
"blueman",
|
||||
"network-manager-applet-git",
|
||||
"xfce4-power-manager",
|
||||
"volumeicon",
|
||||
"pulseaudio-equalizer-ladspa",
|
||||
"neovim-git",
|
||||
"mpris-cli",
|
||||
"wezterm",
|
||||
"tmux",
|
||||
"ranger",
|
||||
"xorg-server",
|
||||
"xorg-xbacklight",
|
||||
"xidlehook",
|
||||
"lightdm",
|
||||
"lightdm-gtk-greeter",
|
||||
"awesome-git",
|
||||
"picom-git",
|
||||
"i3lock-git",
|
||||
"i3exit",
|
||||
"arc-icon-theme",
|
||||
"ttf-dejavu-sans-mono-powerline-git",
|
||||
"flameshot",
|
||||
"rofi",
|
||||
"google-chrome-unstable",
|
||||
"darktable-git",
|
||||
"ktira",
|
||||
],
|
||||
"services": [
|
||||
"bluetooth.service",
|
||||
"lightdm.service",
|
||||
],
|
||||
"sys-encoding": "utf-8",
|
||||
"sys-language": "en_UK",
|
||||
"timezone": "Europe/London",
|
||||
}
|
||||
@@ -7,6 +7,9 @@ vim.api.nvim_set_keymap('i', '<C-v>', '<Esc>"+pa', opts)
|
||||
-- paste and keep the paste register
|
||||
vim.api.nvim_set_keymap('', '<leader>p', '"_dP', opts)
|
||||
|
||||
-- peek registers
|
||||
vim.api.nvim_set_keymap('n', '<leader>r', ':Telescope registers<CR>', opts)
|
||||
|
||||
-- vscode style quick peek at the tree
|
||||
vim.api.nvim_set_keymap('n', '<C-b>', ":NvimTreeToggle<CR>", { noremap = true })
|
||||
|
||||
@@ -21,8 +24,6 @@ vim.api.nvim_set_keymap('', 'U', '<C-r>', opts)
|
||||
vim.api.nvim_set_keymap('', '<C-r>', '<NOP>', opts)
|
||||
|
||||
-- indent via Tab
|
||||
vim.api.nvim_set_keymap('n', '<Tab>', '>>_', opts)
|
||||
vim.api.nvim_set_keymap('n', '<S-Tab>', '<<_', opts)
|
||||
vim.api.nvim_set_keymap('v', '<Tab>', '>>_', opts)
|
||||
vim.api.nvim_set_keymap('v', '<S-Tab>', '<<_', opts)
|
||||
vim.api.nvim_set_keymap('i', '<Tab>', '\t', opts)
|
||||
|
||||
@@ -76,6 +76,7 @@ lsp.on_attach(function(_, bufnr)
|
||||
|
||||
-- CLANGFORMATTTTT
|
||||
vim.keymap.set('n', 'gf', '<Cmd>lua vim.lsp.buf.format()<CR>', opts)
|
||||
vim.keymap.set('n', 'gw', '<Cmd>StripWhitespace<CR>', opts)
|
||||
end)
|
||||
|
||||
|
||||
|
||||
@@ -38,14 +38,6 @@ local packer = require('packer').startup(function(use)
|
||||
end
|
||||
}
|
||||
|
||||
-- speedy searching
|
||||
use {
|
||||
'ggandor/leap.nvim',
|
||||
config = function ()
|
||||
require('leap').add_default_mappings()
|
||||
end
|
||||
}
|
||||
|
||||
-- colourise colour codes
|
||||
use {
|
||||
'norcalli/nvim-colorizer.lua',
|
||||
@@ -134,7 +126,14 @@ local packer = require('packer').startup(function(use)
|
||||
branch = "main",
|
||||
event = "LspAttach",
|
||||
config = function()
|
||||
require("lspsaga").setup({})
|
||||
require("lspsaga").setup({
|
||||
lightbulb = {
|
||||
enable = false,
|
||||
},
|
||||
rename = {
|
||||
whole_project = false,
|
||||
}
|
||||
})
|
||||
end,
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user