merge conflict
This commit is contained in:
commit
d7afec603d
37
Windows/debloater.txt
Normal file
37
Windows/debloater.txt
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
https://github.com/ChrisTitusTech/winutil
|
||||||
|
https://github.com/Raphire/Win11Debloat
|
||||||
|
|
||||||
|
Install Windows Terminal
|
||||||
|
|
||||||
|
install chocolatey
|
||||||
|
- Run Get-ExecutionPolicy. If it returns Restricted, then run Set-ExecutionPolicy AllSigned or Set-ExecutionPolicy Bypass -Scope Process.
|
||||||
|
- Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1'))
|
||||||
|
|
||||||
|
install better powershell
|
||||||
|
- choco install powershell-core
|
||||||
|
- restart winterminal
|
||||||
|
- choose powershell from dropdown
|
||||||
|
|
||||||
|
install git and nvim
|
||||||
|
- choco install git
|
||||||
|
- chco install nvim
|
||||||
|
- restart winterminal
|
||||||
|
|
||||||
|
get debloat repo:
|
||||||
|
|
||||||
|
cd Documents/
|
||||||
|
mkdir .git
|
||||||
|
cd .git
|
||||||
|
git clone https://github.com/Raphire/Win11Debloat
|
||||||
|
cd Win11Debloat
|
||||||
|
|
||||||
|
edit Applist.txt
|
||||||
|
- nvim Applist.txt
|
||||||
|
|
||||||
|
run ./win11debloat.??
|
||||||
|
|
||||||
|
restart windows
|
||||||
|
|
||||||
|
remove dev dependencies
|
||||||
|
remove .git repos
|
||||||
|
|
17
Windows/windoof-entry.ps1
Normal file
17
Windows/windoof-entry.ps1
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
Set-ExecutionPolicy AllSigned -Scope Process
|
||||||
|
Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1'))
|
||||||
|
choco install git
|
||||||
|
cd ~
|
||||||
|
mkdir debloater
|
||||||
|
cd debloater
|
||||||
|
powershell
|
||||||
|
git clone https://github.com/Raphire/Win11Debloat
|
||||||
|
cd Win11Debloat
|
||||||
|
.\Win11Debloat.ps1
|
||||||
|
|
||||||
|
|
||||||
|
#############
|
||||||
|
alternate method:
|
||||||
|
& ([scriptblock]::Create((irm "https://win11debloat.raphi.re/")))
|
||||||
|
& ([scriptblock]::Create((irm "https://win11debloat.raphi.re/"))) -RunDefaults -RemoveApps -ClearStartAllUsers -DisableTelemetry -DisableCopilot -DisableRecall -Silent
|
||||||
|
& ([scriptblock]::Create((irm "https://win11debloat.raphi.re/"))) -RunDefaults -RemoveApps -ClearStartAllUsers -DisableTelemetry -DisableCopilot -DisableRecall -RemoveGamingApps -ForceRemoveEdge -DisableDVR -ClearStart -DisableBing -DisableSuggestions -DisableLockscreenTips -DisableWidgets -Silent
|
14
caldav-workaround.sh
Normal file
14
caldav-workaround.sh
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
CALDIR=$HOME/.calendars
|
||||||
|
file=$CALDIR/$1
|
||||||
|
set +o history
|
||||||
|
echo "calendar/file.ics\n"
|
||||||
|
echo $file
|
||||||
|
echo "insert PW for caldav:"
|
||||||
|
read -s pw
|
||||||
|
curl --verbose --user j.wyss@kolabnow.ch:$pw -X PUT \
|
||||||
|
"https://apps.kolabnow.com/calendars/j.wyss@kolabnow.ch/$1"\
|
||||||
|
-H "Content-Type:text/calendar" \
|
||||||
|
-T $file
|
||||||
|
|
||||||
|
echo "https://apps.kolabnow.com/calendars/j.wyss@kolabnow.ch/$1"
|
||||||
|
set -o history
|
@ -1,5 +1,4 @@
|
|||||||
#require 'lspconfig'.clangd.setup{}
|
#require 'lspconfig'.clangd.setup{}
|
||||||
|
|
||||||
vim.g.zig_fmt_autosave = 0
|
vim.g.zig_fmt_autosave = 0
|
||||||
vim.cmd("set number")
|
vim.cmd("set number")
|
||||||
vim.cmd("set tabstop=4")
|
vim.cmd("set tabstop=4")
|
||||||
@ -86,3 +85,5 @@ vim.keymap.set('n', '<leader>fr', builtin.lsp_references, { desc = 'Telescope li
|
|||||||
vim.keymap.set('n', '<leader>fs', builtin.lsp_document_symbols, { desc = 'Telescope list all document symbols' })
|
vim.keymap.set('n', '<leader>fs', builtin.lsp_document_symbols, { desc = 'Telescope list all document symbols' })
|
||||||
vim.keymap.set('n', '<leader>fd', builtin.lsp_definitions, { desc = 'Telescope defintions under cursor' })
|
vim.keymap.set('n', '<leader>fd', builtin.lsp_definitions, { desc = 'Telescope defintions under cursor' })
|
||||||
vim.keymap.set('n', '<leader>ft', builtin.lsp_type_definitions, { desc = 'Telescope definition of type under cursor' })
|
vim.keymap.set('n', '<leader>ft', builtin.lsp_type_definitions, { desc = 'Telescope definition of type under cursor' })
|
||||||
|
=======
|
||||||
|
vim.cmd("set ttyfast")
|
||||||
|
Loading…
Reference in New Issue
Block a user