This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"ide": { | |
"hasSeenNudge": true | |
}, | |
"mcpServers": { | |
"supabase": { | |
"command": "npx", | |
"args": [ | |
"-y", | |
"@supabase/mcp-server-supabase@latest", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
font-family = BerkeleyMono Nerd Font | |
#font-family = Iosevka Nerd Font | |
#font-family = SFMono Nerd Font | |
font-size = 20 | |
theme = GruvboxDarkHard | |
shell-integration-features = no-cursor,sudo,no-title | |
cursor-style = block | |
adjust-cell-height = 35% |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function onOpen() { | |
var ui = SpreadsheetApp.getUi(); | |
// Create the custom menu | |
ui.createMenu('Custom Functions') | |
.addItem('Generate Sample Data', 'generateSampleData') // Add an item to run the function | |
.addToUi(); | |
} | |
function generateSampleData() { | |
var sheet = SpreadsheetApp.getActiveSpreadsheet().getActiveSheet(); |