Skip to content

Settings

VisiGrid uses text files for configuration, making settings version-controllable and shareable.

Settings are stored in:

  • Linux: ~/.config/visigrid/
  • macOS: ~/Library/Application Support/visigrid/
  • Windows: %APPDATA%\visigrid\

General application settings:

{
"editor.fontSize": 13,
"editor.vimMode": false,
"grid.defaultColumnWidth": 100,
"grid.rowHeight": 24,
"formula.autoRecalc": true,
"file.recentFilesLimit": 10,
"ui.showFormulaBar": true,
"ui.showStatusBar": true
}
SettingDescription
editor.fontSizeFont size in pixels
editor.vimModeEnable Vim-style navigation
grid.defaultColumnWidthDefault column width
grid.rowHeightRow height in pixels
formula.autoRecalcAuto-recalculate formulas
file.recentFilesLimitMax recent files to remember
ui.showFormulaBarShow/hide formula bar
ui.showStatusBarShow/hide status bar

Custom keyboard shortcuts:

[
{ "key": "Ctrl+G", "command": "navigate.goto" },
{ "key": "Ctrl+Shift+N", "command": "namedRange.define" }
]

Use the command palette (Ctrl+Shift+P):

  • “Open Settings” — Opens settings.json
  • “Open Keyboard Shortcuts” — Opens keybindings.json

Or search settings directly with # prefix: #column shows column-related settings.