Merge branch 'main' of github.com:qwjyh/dotfiles
This commit is contained in:
commit
e6af2d5afc
3 changed files with 45 additions and 12 deletions
13
README.md
13
README.md
|
@ -9,12 +9,11 @@ my dotfiles
|
||||||
- etc
|
- etc
|
||||||
- Ubuntu 20.04 on WSL
|
- Ubuntu 20.04 on WSL
|
||||||
- fish
|
- fish
|
||||||
- Manjaro
|
- Arch/Manjaro
|
||||||
- fish
|
- fish
|
||||||
- tmux
|
- tmux
|
||||||
- neovim
|
- neovim
|
||||||
- x11 keyboard config
|
- keyboard config(xremap)
|
||||||
- alacritty
|
|
||||||
- wezterm
|
- wezterm
|
||||||
|
|
||||||
## extra
|
## extra
|
||||||
|
@ -29,16 +28,16 @@ my dotfiles
|
||||||
5. install [scoop](https://scoop.sh/) (see scoop website)
|
5. install [scoop](https://scoop.sh/) (see scoop website)
|
||||||
6. run `bin/install.ps1`
|
6. run `bin/install.ps1`
|
||||||
|
|
||||||
|
### note
|
||||||
|
* manual install lean
|
||||||
|
|
||||||
## Linux
|
## Linux
|
||||||
1. install fish
|
1. install fish
|
||||||
2. run install.fish
|
2. run install.sh
|
||||||
|
|
||||||
# TODO
|
# TODO
|
||||||
- Iron.nvim doesn't work for julia on Windows
|
- Iron.nvim doesn't work for julia on Windows
|
||||||
- JET.nvim doesn't work on windows
|
- JET.nvim doesn't work on windows
|
||||||
- tree-sitter of lua doesn't work on windows
|
|
||||||
- checkhealth errors
|
|
||||||
- make install script for Linux
|
|
||||||
- add rc files of Manjaro
|
- add rc files of Manjaro
|
||||||
- raspi dotfiles
|
- raspi dotfiles
|
||||||
|
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
|
|
||||||
# change working directory to git root
|
# change working directory to git root
|
||||||
Set-Location (Join-Path $PSScriptRoot "..")
|
Set-Location (Join-Path $PSScriptRoot "..\..")
|
||||||
|
|
||||||
# set Ahk2Exe.exe path
|
# set Ahk2Exe.exe path
|
||||||
# example "C:\Program Files\AutoHotKey\Compiler\Ahk2Exe.exe"
|
# example "C:\Program Files\AutoHotKey\Compiler\Ahk2Exe.exe"
|
||||||
|
|
|
@ -38,7 +38,7 @@ Send,{Blind}{Right}
|
||||||
return
|
return
|
||||||
|
|
||||||
; Home,End,PgUp,PgDnの設定
|
; Home,End,PgUp,PgDnの設定
|
||||||
; a s d f
|
; a p n f
|
||||||
; Home PgUp PgDn End
|
; Home PgUp PgDn End
|
||||||
vk1D & a::
|
vk1D & a::
|
||||||
vk1C & a::
|
vk1C & a::
|
||||||
|
@ -48,14 +48,48 @@ vk1D & f::
|
||||||
vk1C & f::
|
vk1C & f::
|
||||||
Send,{Blind}{End}
|
Send,{Blind}{End}
|
||||||
return
|
return
|
||||||
vk1D & s::
|
vk1D & p::
|
||||||
vk1C & s::
|
vk1C & p::
|
||||||
Send,{Blind}{PgUp}
|
Send,{Blind}{PgUp}
|
||||||
return
|
return
|
||||||
|
vk1D & n::
|
||||||
|
vk1C & n::
|
||||||
|
Send,{Blind}{PgDn}
|
||||||
|
return
|
||||||
|
|
||||||
|
; Multi-Line Up/Down
|
||||||
|
; (experimental)
|
||||||
|
vk1D & u::
|
||||||
|
vk1C & u::
|
||||||
|
Send,{Blind}{Up 5}
|
||||||
|
return
|
||||||
vk1D & d::
|
vk1D & d::
|
||||||
vk1C & d::
|
vk1C & d::
|
||||||
Send,{Blind}{PgDn}
|
Send,{Blind}{Down 5}
|
||||||
return
|
return
|
||||||
|
; vk1D & v::
|
||||||
|
; vk1C & v::
|
||||||
|
; Send,{Blind}{Down}
|
||||||
|
; Sleep, 1
|
||||||
|
; Send,{Blind}{Down}
|
||||||
|
; Sleep, 1
|
||||||
|
; Send,{Blind}{Down}
|
||||||
|
; Sleep, 1
|
||||||
|
; Send,{Blind}{Down}
|
||||||
|
; Sleep, 1
|
||||||
|
; Send,{Blind}{Down}
|
||||||
|
; Sleep, 1
|
||||||
|
; return
|
||||||
|
; vk1D & b::
|
||||||
|
; vk1C & b::
|
||||||
|
; Send,{Blind}{Down down}
|
||||||
|
; Send,{Blind}{Down down}
|
||||||
|
; Send,{Blind}{Down down}
|
||||||
|
; Send,{Blind}{Down down}
|
||||||
|
; Send,{Blind}{Down down}
|
||||||
|
; Send,{Blind}{Down up}
|
||||||
|
; return
|
||||||
|
|
||||||
|
|
||||||
; ==========================================
|
; ==========================================
|
||||||
; include extra key remaps
|
; include extra key remaps
|
||||||
|
|
Loading…
Reference in a new issue