this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add Bpython theme and update config

+38 -85
+6 -83
.config/bpython/config
··· 1 - # This is a standard python config file 2 - # Valid values can be True, False, integer numbers, strings 3 - # By default bpython will look for $XDG_CONFIG_HOME/bpython/config 4 - # ($XDG_CONFIG_HOME defaults to ~/.config) or you can specify a file with the 5 - # --config option on the command line 6 - # 7 - # see http://docs.bpython-interpreter.org/configuration.html 1 + # See http://docs.bpython-interpreter.org/configuration.html 8 2 # for all configurable options 9 3 10 - # General section tag 11 4 [general] 12 - 13 - # Display the autocomplete list as you type (default: True). 14 - # When this is off, you can hit tab to see the suggestions. 15 - # auto_display_list = True 16 - 17 - # Syntax highlighting as you type (default: True). 18 - # syntax = True 19 - 20 - # Display the arg spec (list of arguments) for callables, 21 - # when possible (default: True). 22 - # arg_spec = True 23 - 24 - # History file (default: ~/.pythonhist): 25 - # hist_file = ~/.pythonhist 26 - 27 - # Number of lines to store in history (set to 0 to disable) (default: 100): 28 - # hist_length = 100 29 - 30 - # Soft tab size (default: 4, see pep-8): 31 - # tab_length = 4 32 - 33 - # Color schemes should be put in $XDG_CONFIG_HOME/bpython/ e.g. to use the theme 34 - # $XDG_CONFIG_HOME/bpython/foo.theme set color_scheme = foo. Leave blank or set 35 - # to "default" to use the default theme 36 - # color_scheme = default 5 + # Custom monokai-like theme 6 + color_scheme = monokai 37 7 38 8 # Allow two blank lines before automatic dedent 39 9 dedent_after = 2 40 10 41 11 # External editor to use for editing the current line, block, or full history 42 - # Default is to try $EDITOR and $VISUAL, then vi - but if you uncomment 43 - # the line below that will take precedence 44 12 editor = vim 45 13 46 - # Whether to append .py to the filename while saving session to a file. 47 - # (default: False) 48 - # save_append_py = False 49 - 50 - # The name of a helper executable that should perform pastebin upload on 51 - # bpython's behalf. If unset, bpython uploads pastes to bpaste.net. (default: ) 52 - # pastebin_helper = gist.py 53 - 54 - # How long an undo must be expected to take before prompting for how 55 - # many lines should be undone. Set to -1 to never prompt, or 0 to 56 - # always prompt. 57 - # single_undo_time = 1.0 58 - 59 - # Enable autoreload feature by default (default: False). 60 - # default_autoreload = False 61 14 62 15 [keyboard] 63 - 64 - # All key bindings are shown commented out with their default binding 65 - 66 - # pastebin = F8 67 - # last_output = F9 68 - # reimport = F6 69 - # help = F1 70 - # toggle_file_watch = F5 71 - # save = C-s 72 - # undo = C-r 73 - # up_one_line = C-p 74 - # down_one_line = C-n 75 - # cut_to_buffer = C-k 76 - # search = C-o 77 - # yank_from_buffer = C-y 78 - # backspace = C-h 16 + # Meta-backspace == clear word 79 17 clear_word = C-M-h 80 - # clear_line = C-u 81 - # clear_screen = C-l 82 - # show_source = F2 83 - # exit = C-d 84 - # external_editor = F7 85 - # edit_config = F3 86 - # reverse_incremental_search = M-r 87 - # incremental_search = M-s 88 18 89 - [curtsies] 90 19 91 - # Allow the the completion and docstring box above the current line 92 - # (default: False) 93 - # list_above = False 94 - 95 - # Enables two fish (the shell) style features: 96 - # Previous line key will search for the current line (like reverse incremental 97 - # search) and right arrow will complete the current line with the first match 98 - # from history. (default: True) 20 + [curtsies] 21 + # Fish-like completion 99 22 right_arrow_completion = True
+29
.config/bpython/monokai.theme
··· 1 + # Copy to $XDG_CONFIG_HOME/bpython/monokai.theme and set "color_scheme = monokai" in 2 + # $XDG_CONFIG_HOME/bpython/config ($XDG_CONFIG_HOME defaults to ~/.config) 3 + 4 + # Unfortunately, bpython themes do not support all of the same token types as 5 + # e.g. TextMate grammar, so some of these don't match up perfectly, e.g. 6 + # - "." is an operator instead of punctuation 7 + # - Constants like "True" and "None" are considered keywords 8 + # - Functions, classe definitions are highlighted as names 9 + # - No special highlighting for kwargs, self, etc. 10 + 11 + [syntax] 12 + keyword = r 13 + name = w 14 + comment = K 15 + string = y 16 + error = R 17 + number = m 18 + operator = r 19 + punctuation = w 20 + token = m 21 + paren = w 22 + 23 + [interface] 24 + background = d 25 + output = d 26 + main = c 27 + prompt = c 28 + prompt_more = c 29 + right_arrow_suggestion = K
+1 -1
.config/vscode/extensions.txt
··· 27 27 ms-python.python@2020.6.89148 28 28 ms-vscode-remote.remote-ssh@0.51.0 29 29 ms-vscode-remote.remote-ssh-edit@0.51.0 30 - ms-vscode.cmake-tools@1.4.1 30 + ms-vscode.cmake-tools@1.4.0 31 31 ms-vscode.cpptools@0.28.3 32 32 ms-vscode.vscode-typescript-tslint-plugin@1.2.3 33 33 ms-vsliveshare.vsliveshare@1.0.2354
+2 -1
Library/Application Support/Code/User/settings.json
··· 172 172 "yadm/encrypt": "gitignore", 173 173 "yarn.lock": "yarnlock", 174 174 "**/.ssh/*config*": "ssh_config", 175 - "*.path": "ini" 175 + "*.path": "ini", 176 + "**/bpython/config": "ini", 176 177 }, 177 178 "files.exclude": { 178 179 "**/.DS_Store": true,