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: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,8 @@ target
# and can be added to the global gitignore or merged into this file. For a more nuclear
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
#.idea/


# Added by cargo

/target
40 changes: 40 additions & 0 deletions .skry.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
# Example skry configuration file
# Place this file in your project root as .skry.toml

[general]
# Maximum number of tokens to include in the context
token_budget = 4096

# Pruning strategy for dependencies
# Options: aggressive, bodies, full
pruning_strategy = "aggressive"

[lsp]
# Map file extensions to LSP server commands
# These are the default values; customize as needed

# Rust
rs = "rust-analyzer"

# C++
cpp = "clangd"
cc = "clangd"
cxx = "clangd"
h = "clangd"
hpp = "clangd"

# TypeScript/JavaScript
ts = "typescript-language-server --stdio"
tsx = "typescript-language-server --stdio"
js = "typescript-language-server --stdio"
jsx = "typescript-language-server --stdio"

# Python (requires pyright or pylsp)
# py = "pyright-langserver --stdio"
# py = "pylsp"

# Go (requires gopls)
# go = "gopls"

# Java (requires jdtls)
# java = "jdtls"
Loading