Skip to content

Commit

Permalink
add nvim
Browse files Browse the repository at this point in the history
  • Loading branch information
codyduong committed Apr 25, 2024
1 parent aea2a1c commit 4c560e2
Show file tree
Hide file tree
Showing 6 changed files with 31 additions and 6 deletions.
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[submodule "windows/.files/%LOCALAPPDATA%/nvim"]
path = windows/.files/%LOCALAPPDATA%/nvim
url = https://github.com/codyduong/nvim
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,5 @@
| <kbd>Win</kbd>+<kbd>Shift</kbd>+<kbd>W</kbd> | <kbd>Alt</kbd>+<kbd>F4</kbd> | The bind used to close windows on my i3 Linux Configuration |
| <kbd>Win</kbd>+<kbd>D</kbd> | <kbd>Alt</kbd>+<kbd>D</kbd> | dmenu |
| <kbd>CapsLock</kbd> | <kbd>F13</kbd> | Who the fuck uses caps-lock in 2024 |
| <kbd>Win</kbd>+<kbd>M</kbd> | Disabled | Disables minimize shortcut |
| <kbd>Win</kbd>+<kbd>F</kbd> | Disabled | Disables feedback hub |
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,26 @@
"remapShortcuts": {
"global": [
{
"originalKeys": "91;68",
"newRemapKeys": "164;68"
"originalKeys": "260;68",
"operationType": 0,
"secondKeyOfChord": 0,
"newRemapKeys": "18;68"
},
{
"originalKeys": "260;160;87",
"newRemapKeys": "164;115"
"originalKeys": "260;70",
"newRemapKeys": "256"
},
{
"originalKeys": "260;77",
"newRemapKeys": "256"
},
{
"originalKeys": "260;16;87",
"operationType": 0,
"secondKeyOfChord": 0,
"newRemapKeys": "18;115"
}
],
"appSpecific": []
}
}
}
1 change: 1 addition & 0 deletions windows/.files/%LOCALAPPDATA%/nvim
Submodule nvim added at 359804
4 changes: 3 additions & 1 deletion windows/.files/%USERPROFILE%/.config/komorebi/komorebi.ahk
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,9 @@ CompleteConfiguration()

; Manipulate windows
#Space::ToggleFloat()
#+x::ToggleMaximize()
#+f::ToggleMonocle()
#+z::ToggleZen()

; Window manager options
#+r::Retile()
Expand Down Expand Up @@ -111,4 +113,4 @@ CompleteConfiguration()
#+7::MoveToWorkspace(6)
#+8::MoveToWorkspace(7)
#+9::MoveToWorkspace(8)
#+0::MoveToWorkspace(9)
#+0::MoveToWorkspace(9)
Original file line number Diff line number Diff line change
Expand Up @@ -450,4 +450,9 @@ NotificationSchema() {

SocketSchema() {
RunWait("komorebic.exe socket-schema", , "Hide")
}

ToggleZen() {
ToggleMonocle()
ToggleMaximize()
}

0 comments on commit 4c560e2

Please sign in to comment.