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
| { | |
| // jupyter notebook specific settings | |
| "notebook.cellToolbarLocation": { | |
| "default": "hidden" | |
| }, | |
| "notebook.insertToolbarLocation": "hidden", | |
| "notebook.showCellStatusBar": "hidden", | |
| "notebook.compactView": true, | |
| // "notebook.insertToolbarLocation": "notebookToolbar", | |
| "notebook.output.lineHeight": 14, |
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
| theme = "zed_onedark" # github_dark, jetbrains_dark | |
| [editor] | |
| cursorline = true | |
| bufferline = "multiple" | |
| mouse = true | |
| color-modes = true | |
| auto-save = true | |
| [editor.cursor-shape] |
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
| [[language]] | |
| name = "python" | |
| scope = "source.python" | |
| injection-regex = "python" | |
| file-types = ["py","pyi","py3","pyw",".pythonstartup",".pythonrc"] | |
| shebangs = ["python"] | |
| roots = [".", "pyproject.toml", "pyrightconfig.json"] | |
| comment-token = "#" | |
| language-servers = ["pyright", "ruff"] | |
| indent = { tab-width = 4, unit = " " } |
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
| // Zed settings | |
| // | |
| // For information on how to configure Zed, see the Zed | |
| // documentation: https://zed.dev/docs/configuring-zed | |
| // | |
| // To see all of Zed's default settings without changing your | |
| // custom settings, run the `zed: Open Default Settings` command | |
| // from the command palette | |
| { | |
| "assistant": { |
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
| { | |
| "python.defaultInterpreterPath": "~/miniconda3/envs/rl/bin/python", | |
| "terminal.integrated.fontSize": 15, | |
| "terminal.integrated.lineHeight": 1.15, | |
| "python.jediEnabled": false, | |
| "terminal.integrated.fontFamily": "Menlo for Powerline", | |
| "python.autoUpdateLanguageServer": false, | |
| "python.languageServer": "Pylance", | |
| "editor.formatOnType": true, | |
| "editor.minimap.enabled": false, |
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_face": "JetBrains Mono", | |
| "font_size": 16, | |
| "rulers": [119], | |
| "translate_tabs_to_spaces": true, | |
| "indent_to_bracket": true, | |
| "highlight_line": true, | |
| "auto_complete": true, | |
| "font_options": [ | |
| "no_italic", |
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
| -- Install packer | |
| local install_path = vim.fn.stdpath 'data' .. '/site/pack/packer/start/packer.nvim' | |
| local is_bootstrap = false | |
| if vim.fn.empty(vim.fn.glob(install_path)) > 0 then | |
| is_bootstrap = true | |
| vim.fn.system { 'git', 'clone', '--depth', '1', 'https://github.com/wbthomason/packer.nvim', install_path } | |
| vim.cmd [[packadd packer.nvim]] | |
| end | |
| require('packer').startup(function(use) |
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
| set encoding=utf-8 | |
| set number | |
| syntax enable | |
| set scrolloff=5 | |
| set backspace=indent,eol,start | |
| set tabstop=4 | |
| set softtabstop=4 | |
| set shiftwidth=4 | |
| set expandtab |
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
| brew upgrade | |
| brew install node |