jupyter: disable bracket auto complete

This commit is contained in:
Fernando Schauenburg 2021-07-23 15:48:56 +02:00
parent a9ee9983b3
commit 03bfd16055
2 changed files with 3 additions and 0 deletions

View file

@ -14,6 +14,7 @@ DOTFILES_DIR="$(dirname "$(realpath "$0")")"
DIRS=$(cat <<EOF DIRS=$(cat <<EOF
${HOME}/.local/bin ${HOME}/.local/bin
${HOME}/.local/etc/git ${HOME}/.local/etc/git
${HOME}/.jupyter/custom
${HOME}/.ssh ${HOME}/.ssh
${XDG_CONFIG_HOME}/alacritty ${XDG_CONFIG_HOME}/alacritty
${XDG_CONFIG_HOME}/dircolors ${XDG_CONFIG_HOME}/dircolors
@ -38,6 +39,7 @@ DOTFILES=$(cat <<EOF
files/xcompose ${HOME}/.XCompose files/xcompose ${HOME}/.XCompose
files/bashrc ${HOME}/.bash_profile files/bashrc ${HOME}/.bash_profile
files/bashrc ${HOME}/.bashrc files/bashrc ${HOME}/.bashrc
files/jupyter_custom.js ${HOME}/.jupyter/custom/custom.js
files/ssh_config ${HOME}/.ssh/config files/ssh_config ${HOME}/.ssh/config
files/alacritty.yml ${XDG_CONFIG_HOME}/alacritty/alacritty.yml files/alacritty.yml ${XDG_CONFIG_HOME}/alacritty/alacritty.yml
files/gitconfig ${XDG_CONFIG_HOME}/git/config files/gitconfig ${XDG_CONFIG_HOME}/git/config

1
files/jupyter_custom.js Normal file
View file

@ -0,0 +1 @@
IPython.CodeCell.options_default.cm_config.autoCloseBrackets = false;