This file contains 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
{ | |
"$id": "https://github.com/mason-org/mason-registry/schemas/package", | |
"$schema": "https://json-schema.org/draft/2020-12/schema", | |
"title": "Mason Registry package schema", | |
"description": "Schema for package definitions.", | |
"type": "object", | |
"additionalProperties": false, | |
"properties": { | |
"name": { | |
"type": "string", |
This file contains 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
{ | |
"als": "https://raw.githubusercontent.com/AdaCore/ada_language_server/master/integration/vscode/ada/package.json", | |
"astro": "https://raw.githubusercontent.com/withastro/language-tools/main/packages/vscode/package.json", | |
"awkls": "https://raw.githubusercontent.com/Beaglefoot/awk-language-server/master/client/package.json", | |
"bashls": "https://raw.githubusercontent.com/bash-lsp/bash-language-server/master/vscode-client/package.json", | |
"clangd": "https://raw.githubusercontent.com/clangd/vscode-clangd/master/package.json", | |
"cssls": "https://raw.githubusercontent.com/microsoft/vscode/main/extensions/css-language-features/package.json", | |
"dartls": "https://raw.githubusercontent.com/Dart-Code/Dart-Code/master/package.json", | |
"denols": "https://raw.githubusercontent.com/denoland/vscode_deno/main/package.json", | |
"elixirls": "https://raw.githubusercontent.com/elixir-lsp/vscode-elixir-ls/master/package.json", |
This file contains 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
let mapleader="," | |
"============================================================ | |
" Plugins | |
"============================================================ | |
" | |
""" prepare vundle | |
set nocompatible | |
filetype off | |
set rtp+=~/.vim/bundle/Vundle.vim |
This file contains 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 () { | |
var scrollContainer = $('.NavView'); | |
$('.ChildFolderDiv').on('click', function () { | |
scrollContainer.animate({scrollTop: 0}, 200); | |
}); | |
}); |