feat(vscode): add R packages & settings

This commit is contained in:
Michael Thomas 2024-09-09 12:14:04 -04:00
parent 15974e98d3
commit 224b97e6aa
2 changed files with 7 additions and 78 deletions

View File

@ -3,7 +3,7 @@
pkgs, pkgs,
... ...
}: let }: let
package = pkgs.vscodium; package = pkgs.unstable.vscodium;
vscodePname = package.pname; vscodePname = package.pname;
@ -78,6 +78,10 @@ in {
# Rust # Rust
rust-lang.rust-analyzer rust-lang.rust-analyzer
# R
reditorsupport.r
quarto.quarto
]; ];
}; };
}; };

View File

@ -10,7 +10,6 @@
}, },
"editor.lineHeight": 20, "editor.lineHeight": 20,
"editor.suggestSelection": "first", "editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"files.exclude": { "files.exclude": {
"**/.classpath": true, "**/.classpath": true,
"**/.project": true, "**/.project": true,
@ -18,80 +17,6 @@
"**/.factorypath": true "**/.factorypath": true
}, },
"explorer.confirmDragAndDrop": false, "explorer.confirmDragAndDrop": false,
"intelephense.stubs": [
"apache",
"bcmath",
"bz2",
"calendar",
"com_dotnet",
"Core",
"ctype",
"curl",
"date",
"dba",
"dom",
"enchant",
"exif",
"FFI",
"fileinfo",
"filter",
"fpm",
"ftp",
"gd",
"gettext",
"gmp",
"hash",
"iconv",
"imap",
"intl",
"json",
"ldap",
"libxml",
"mbstring",
"meta",
"mysqli",
"oci8",
"odbc",
"openssl",
"pcntl",
"pcre",
"PDO",
"pdo_ibm",
"pdo_mysql",
"pdo_pgsql",
"pdo_sqlite",
"pgsql",
"Phar",
"posix",
"pspell",
"readline",
"Reflection",
"session",
"shmop",
"SimpleXML",
"snmp",
"soap",
"sockets",
"sodium",
"SPL",
"sqlite3",
"standard",
"superglobals",
"sysvmsg",
"sysvsem",
"sysvshm",
"tidy",
"tokenizer",
"xml",
"xmlreader",
"xmlrpc",
"xmlwriter",
"xsl",
"Zend OPcache",
"zip",
"zlib",
"wordpress"
],
"terminal.integrated.fontFamily": "'CaskaydiaCove Nerd Font Mono', 'Cascadia Mono PL'", "terminal.integrated.fontFamily": "'CaskaydiaCove Nerd Font Mono', 'Cascadia Mono PL'",
"terminal.integrated.fontSize": 13, "terminal.integrated.fontSize": 13,
"[javascript]": { "[javascript]": {
@ -104,7 +29,6 @@
"editor.defaultFormatter": "esbenp.prettier-vscode" "editor.defaultFormatter": "esbenp.prettier-vscode"
}, },
"svelte.enable-ts-plugin": true, "svelte.enable-ts-plugin": true,
"svelte.plugin.svelte.note-new-transformation": false,
"editor.accessibilitySupport": "off", "editor.accessibilitySupport": "off",
"editor.smoothScrolling": true, "editor.smoothScrolling": true,
"workbench.list.smoothScrolling": true, "workbench.list.smoothScrolling": true,
@ -159,5 +83,6 @@
"nix.enableLanguageServer": true, "nix.enableLanguageServer": true,
"nix.serverPath": "nil", "nix.serverPath": "nil",
"cSpell.userWords": ["typecheck"], "cSpell.userWords": ["typecheck"],
"workbench.colorTheme": "Min Dark" "workbench.colorTheme": "Min Dark",
"r.plot.useHttpgd": true
} }