From f31c0777908d1eb4ac80155f5c2c8955f7dc225f Mon Sep 17 00:00:00 2001 From: Andrew Mulbrook Date: Sat, 22 May 2021 13:57:39 -0500 Subject: [PATCH] Silence bells and make csi easier --- csirc | 3 +++ inputrc | 2 ++ install.conf.yaml | 2 ++ vim/after/ftplugin/scheme.vim | 5 +++++ vimrc | 7 +++++++ 5 files changed, 19 insertions(+) create mode 100644 csirc create mode 100644 inputrc create mode 100644 vim/after/ftplugin/scheme.vim diff --git a/csirc b/csirc new file mode 100644 index 0000000..c8c833c --- /dev/null +++ b/csirc @@ -0,0 +1,3 @@ +(import linenoise) +(current-input-port (make-linenoise-port)) + diff --git a/inputrc b/inputrc new file mode 100644 index 0000000..7220166 --- /dev/null +++ b/inputrc @@ -0,0 +1,2 @@ +set bell-style none + diff --git a/install.conf.yaml b/install.conf.yaml index b552fc7..68aa8e9 100644 --- a/install.conf.yaml +++ b/install.conf.yaml @@ -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/: diff --git a/vim/after/ftplugin/scheme.vim b/vim/after/ftplugin/scheme.vim new file mode 100644 index 0000000..03d7042 --- /dev/null +++ b/vim/after/ftplugin/scheme.vim @@ -0,0 +1,5 @@ + +setlocal shiftwidth=2 +setlocal tabstop=2 +setlocal expandtab + diff --git a/vimrc b/vimrc index d3e1a74..cee6947 100644 --- a/vimrc +++ b/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