Compare commits

...

2 Commits

Author SHA1 Message Date
ec7dd6c5b9
ipython: default profile settings 2023-07-22 15:23:52 -04:00
16b08161a4
nvim: use rasmus color theme 2023-07-22 15:22:47 -04:00
2 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,5 @@
c = get_config()
c.TerminalInteractiveShell.editing_mode = "vi"
c.TerminalInteractiveShell.show_rewritten_input = False
c.TerminalInteractiveShell.emacs_bindings_in_vi_insert_mode = False

View File

@ -99,6 +99,9 @@ if $SYSTEM_PROFILE == "DEFAULT"
source $XDG_CONFIG_HOME/nvim/typst.vim source $XDG_CONFIG_HOME/nvim/typst.vim
endif endif
" color theme
Plug 'kvrohit/rasmus.nvim'
" URL motions " URL motions
Plug 'axieax/urlview.nvim' Plug 'axieax/urlview.nvim'
@ -112,6 +115,8 @@ highlight GitGutterDelete ctermfg=red
call plug#end() call plug#end()
source $XDG_CONFIG_HOME/nvim/color.vim
if $SYSTEM_PROFILE == "DEFAULT" if $SYSTEM_PROFILE == "DEFAULT"
" see .config/nvim/lua/init.lua " see .config/nvim/lua/init.lua
lua require('init') lua require('init')