Skip to content

Commit

Permalink
Sync cursor settings, update packages
Browse files Browse the repository at this point in the history
  • Loading branch information
macalinao committed Sep 18, 2023
1 parent e2e8066 commit 0c3f2f5
Show file tree
Hide file tree
Showing 4 changed files with 113 additions and 18 deletions.
84 changes: 84 additions & 0 deletions config/cursor/extensions.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,84 @@
FaroSystemAppender constructor
42Crunch.vscode-openapi
aaron-bond.better-comments
arcanis.vscode-zipfs
austenc.tailwind-docs
B4dM4n.nixpkgs-fmt
bbenoist.Nix
bodil.prettier-toml
bourhaouta.tailwindshades
bradlc.vscode-tailwindcss
bradymholt.pgformatter
brettm12345.nixfmt-vscode
ChFlick.firecode
chrislajoie.vscode-modelines
christian-kohler.npm-intellisense
csstools.postcss
damirka.move-syntax
dbaeumer.vscode-eslint
denoland.vscode-deno
eamodio.gitlens
EditorConfig.EditorConfig
esbenp.prettier-vscode
figma.figma-vscode-extension
foxundermoon.shell-format
gaborv.flatbuffers
GitHub.copilot
GitHub.copilot-chat
GitHub.copilot-labs
GitHub.github-vscode-theme
github.vscode-github-actions
GitHub.vscode-pull-request-github
golang.go
GrapeCity.gc-excelviewer
GraphQL.vscode-graphql
GraphQL.vscode-graphql-syntax
hashicorp.terraform
haskell.haskell
hbenl.vscode-mocha-test-adapter
hbenl.vscode-test-explorer
jhnj.vscode-go-inline-sql
jnoortheen.nix-ide
jock.svg
JScearcy.rust-doc-viewer
JuanBlanco.solidity
justusadam.language-haskell
kenhowardpdx.vscode-gist
KylonaSoftware.boogie
lightyen.tailwindcss-intellisense-twin
matangover.mypy
mechatroner.rainbow-csv
mkhl.direnv
movingco.move-analyzer-plus
ms-azuretools.vscode-docker
MS-CEINTL.vscode-language-pack-ja
ms-python.autopep8
ms-python.black-formatter
ms-python.isort
ms-python.python
ms-python.vscode-pylance
ms-vscode.test-adapter-converter
ms-vsliveshare.vsliveshare
naumovs.color-highlight
Orta.vscode-jest
redhat.vscode-yaml
rust-lang.rust-analyzer
shd101wyy.markdown-preview-enhanced
shyykoserhiy.vscode-spotify
stkb.rewrap
streetsidesoftware.code-spell-checker
styled-components.vscode-styled-components
Swellaby.vscode-rust-test-adapter
tamasfe.even-better-toml
tintinweb.vscode-vyper
toba.vsfire
tomoki1207.pdf
tootone.org-mode
unifiedjs.vscode-mdx
VisualStudioExptTeam.intellicode-api-usage-examples
VisualStudioExptTeam.vscodeintellicode
vscodevim.vim
Vue.volar
WallabyJs.quokka-vscode
WallabyJs.wallaby-vscode
yzhang.markdown-all-in-one
12 changes: 6 additions & 6 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

24 changes: 12 additions & 12 deletions nix/flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 11 additions & 0 deletions scripts/igm-sync
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,20 @@
cd $DOTFILES

# Write VSCode extensions list
mkdir -p config/vscode/
code --list-extensions >config/vscode/extensions.txt

# Copy VSCode settings
cp $HOME/Library/Application\ Support/Code/User/keybindings.json config/vscode/keybindings.json
cp $HOME/Library/Application\ Support/Code/User/settings.json config/vscode/settings.json
cp $HOME/Library/Application\ Support/Code/User/tasks.json config/vscode/tasks.json

# Write Cursor extensions list
mkdir -p config/cursor/
cursor --list-extensions >config/cursor/extensions.txt

# Copy Cursor settings
CURSOR_USER_DIR=$HOME/Library/Application\ Support/Cursor/User/
cp $CURSOR_USER_DIR/keybindings.json config/cursor/keybindings.json
cp $CURSOR_USER_DIR/settings.json config/cursor/settings.json
cp $CURSOR_USER_DIR/tasks.json config/cursor/tasks.json

0 comments on commit 0c3f2f5

Please sign in to comment.