Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@
#
# SPDX-FileCopyrightText: 2023 Jerin Joy
# SPDX-License-Identifier: Apache-2.0

Brewfile.lock.json
fishd.tmp.*
homedir_files/config
homedir_files/config/fish/completions/
homedir_files/config/fish/fish_variables
homedir_files/config/fish/fishd.*
Expand All @@ -19,5 +22,3 @@ homedir_files/config/qBit*
homedir_files/config/zsh-abbr/
homedir_files/vim/.netrwhist
homedir_files/vim/plugged

Brewfile.lock.json
2 changes: 1 addition & 1 deletion .reuse/dep5
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ Upstream-Name: reuse
Source: https://github.com/fsfe/reuse-tool


Files: homedir_files/vim/autoload/plug.vim docs/terminal.jpg homedir_files/config/nvim/* homedir_files/config/lvim/* homedir_files/config/fish/fish_plugins Aptfile
Files: homedir_files/vim/autoload/plug.vim docs/terminal.jpg homedir_files/config/nvim/* homedir_files/config/zed/* homedir_files/config/lvim/* homedir_files/config/fish/fish_plugins Aptfile
Copyright: 2023 by Jerin Joy
License: Apache-2.0
21 changes: 21 additions & 0 deletions homedir_files/config/zed/keymap.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
// Zed keymap
//
// For information on binding keys, see the Zed
// documentation: https://zed.dev/docs/key-bindings
//
// To see the default key bindings run `zed: open default keymap`
// from the command palette.
[
{
"context": "Workspace",
"bindings": {
// "shift shift": "file_finder::Toggle"
}
},
{
"context": "Editor",
"bindings": {
// "j k": ["workspace::SendKeystrokes", "escape"]
}
}
]
57 changes: 57 additions & 0 deletions homedir_files/config/zed/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
// Zed settings
//
// For information on how to configure Zed, see the Zed
// documentation: https://zed.dev/docs/configuring-zed
//
// To see all of Zed's default settings without changing your
// custom settings, run `zed: open default settings` from the
// command palette (cmd-shift-p / ctrl-shift-p)
{
"assistant": {
"default_model": {
"provider": "google",
"model": "gemini-2.5-flash"
},
"version": "2"
},

"ssh_connections": [
{
"host": "joy.ba.rivosinc.com",
"projects": [
{
"paths": [
"~/workspace/ctest"
]
},
{
"paths": [
"~/workspace/jumpstart"
]
},
{
"paths": [
"~/workspace/riscv-tests"
]
},
{
"paths": [
"~/workspace/spike"
]
}
]
}
],

"vim_mode": true,

"ui_font_size": 18,
"buffer_font_family": "FiraCode Nerd Font Mono",
"buffer_font_size": 16,
"buffer_font_features": {
"liga": false,
"calt": false
},

"theme": "Tokyo Night Storm"
}
Loading