Merge remote-tracking branch 'origin/main'
This commit is contained in:
commit
b62a73ea71
3 changed files with 9 additions and 0 deletions
|
@ -28,6 +28,9 @@ my dotfiles
|
|||
|
||||
# TODO
|
||||
- make install script for Linux
|
||||
- fish setup
|
||||
- fisher
|
||||
- abbr
|
||||
- add rc files of Manjaro
|
||||
- neovim configs
|
||||
- lsp-config
|
||||
|
|
|
@ -33,6 +33,8 @@ Write-Output "Latest PSReadLine"
|
|||
Install-Module -Name PSReadLine -Force # Override default version to get the latest one
|
||||
Write-Output "CompletionPredictor"
|
||||
Install-Module -Name CompletionPredictor
|
||||
Write-Output "npm"
|
||||
Install-Module -Name npm-completion
|
||||
|
||||
|
||||
|
||||
|
@ -52,6 +54,7 @@ scoop import .\bin\windows\scoop_apps\scoop_minimal_apps.json
|
|||
New-Item -ItemType SymbolicLink -Path ~\AppData\Local\nvim\init.lua -Target (Resolve-Path .\dotfiles\neovim\init.lua) -Force
|
||||
New-Item -ItemType SymbolicLink -Path ~\AppData\Local\nvim\lua\plugins.lua -Target (Resolve-Path .\dotfiles\neovim\lua\plugins.lua) -Force
|
||||
New-Item -ItemType SymbolicLink -Path ~\AppData\Local\nvim\lua\lualine_setup.lua -Target (Resolve-Path .\dotfiles\neovim\lua\lualine_setup.lua) -Force
|
||||
New-Item -ItemType SymbolicLink -Path ~\AppData\Local\nvim\lua\lsp_client_config.lua -Target (Resolve-Path .\dotfiles\neovim\lua\lsp_client_config.lua) -Force
|
||||
# pwsh
|
||||
New-Item -ItemType SymbolicLink -Path $PROFILE -Target (Resolve-Path .\dotfiles\pwsh\powershell_profile.ps1) -Force
|
||||
New-Item -ItemType SymbolicLink -Path ~\.config\powershell\chezmoi_completion.ps1 -Target (Resolve-Path .\dotfiles\pwsh\chezmoi_completion.ps1) -Force
|
||||
|
|
|
@ -196,3 +196,6 @@ if (Test-Path($ChocolateyProfile)) {
|
|||
# rclone
|
||||
rclone completion powershell | Out-String | Invoke-Expression
|
||||
|
||||
# node
|
||||
Import-Module npm-completion
|
||||
|
||||
|
|
Loading…
Reference in a new issue