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:
|
||||
~/.bashrc: bashrc
|
||||
~/.profile: profile
|
||||
~/.inputrc: inputrc
|
||||
~/.vimrc: vimrc
|
||||
~/.vim: vim
|
||||
~/.csirc: csirc
|
||||
~/.config/kitty/kitty.conf: kitty.conf
|
||||
~/.scripts: scripts
|
||||
~/.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
|
||||
set nocompatible
|
||||
|
||||
" No more annoying pings!
|
||||
set visualbell
|
||||
|
||||
|
||||
" ----- Color Table -----
|
||||
hi x016_Grey0 ctermfg=16 guifg=#000000 "rgb=0,0,0
|
||||
hi x017_NavyBlue ctermfg=17 guifg=#00005f "rgb=0,0,95
|
||||
|
|
@ -279,6 +283,9 @@ set autoindent
|
|||
set backspace=indent,eol,start
|
||||
set smarttab
|
||||
|
||||
" No wrapping please
|
||||
set nowrap
|
||||
|
||||
|
||||
" Just keep it DARK :D
|
||||
colorscheme ron
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue