Silence bells and make csi easier
This commit is contained in:
parent
653d3af5f1
commit
f31c077790
5 changed files with 19 additions and 0 deletions
3
csirc
Normal file
3
csirc
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
(import linenoise)
|
||||||
|
(current-input-port (make-linenoise-port))
|
||||||
|
|
||||||
2
inputrc
Normal file
2
inputrc
Normal file
|
|
@ -0,0 +1,2 @@
|
||||||
|
set bell-style none
|
||||||
|
|
||||||
|
|
@ -13,8 +13,10 @@
|
||||||
- link:
|
- link:
|
||||||
~/.bashrc: bashrc
|
~/.bashrc: bashrc
|
||||||
~/.profile: profile
|
~/.profile: profile
|
||||||
|
~/.inputrc: inputrc
|
||||||
~/.vimrc: vimrc
|
~/.vimrc: vimrc
|
||||||
~/.vim: vim
|
~/.vim: vim
|
||||||
|
~/.csirc: csirc
|
||||||
~/.config/kitty/kitty.conf: kitty.conf
|
~/.config/kitty/kitty.conf: kitty.conf
|
||||||
~/.scripts: scripts
|
~/.scripts: scripts
|
||||||
~/.fonts/:
|
~/.fonts/:
|
||||||
|
|
|
||||||
5
vim/after/ftplugin/scheme.vim
Normal file
5
vim/after/ftplugin/scheme.vim
Normal file
|
|
@ -0,0 +1,5 @@
|
||||||
|
|
||||||
|
setlocal shiftwidth=2
|
||||||
|
setlocal tabstop=2
|
||||||
|
setlocal expandtab
|
||||||
|
|
||||||
7
vimrc
7
vimrc
|
|
@ -2,6 +2,10 @@
|
||||||
" Enable basic vim behaviors
|
" Enable basic vim behaviors
|
||||||
set nocompatible
|
set nocompatible
|
||||||
|
|
||||||
|
" No more annoying pings!
|
||||||
|
set visualbell
|
||||||
|
|
||||||
|
|
||||||
" ----- Color Table -----
|
" ----- Color Table -----
|
||||||
hi x016_Grey0 ctermfg=16 guifg=#000000 "rgb=0,0,0
|
hi x016_Grey0 ctermfg=16 guifg=#000000 "rgb=0,0,0
|
||||||
hi x017_NavyBlue ctermfg=17 guifg=#00005f "rgb=0,0,95
|
hi x017_NavyBlue ctermfg=17 guifg=#00005f "rgb=0,0,95
|
||||||
|
|
@ -279,6 +283,9 @@ set autoindent
|
||||||
set backspace=indent,eol,start
|
set backspace=indent,eol,start
|
||||||
set smarttab
|
set smarttab
|
||||||
|
|
||||||
|
" No wrapping please
|
||||||
|
set nowrap
|
||||||
|
|
||||||
|
|
||||||
" Just keep it DARK :D
|
" Just keep it DARK :D
|
||||||
colorscheme ron
|
colorscheme ron
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue