summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--cfg/.vimrc9
1 files changed, 7 insertions, 2 deletions
diff --git a/cfg/.vimrc b/cfg/.vimrc
index f24695c..42f7294 100644
--- a/cfg/.vimrc
+++ b/cfg/.vimrc
@@ -3,6 +3,7 @@
" tabs are either 4 or nada
set tabstop=4
set shiftwidth=4
+set expandtab
" c-o-l-o-r-s-!
syntax on
filetype plugin on
@@ -14,18 +15,22 @@ inoremap <C-S> <Esc>:w<CR>a
" kinda useless though nvim suxx so this is still useful
set guicursor=n-v-c-i:block
" relative line numbers for life
-set nu rnu
+set nu rnu cursorline
" i forgor
set encoding=utf-8
set fileencoding=utf-8
+set fileformat=unix
+" disable mouse because who fucking needs that shit
+set mouse=
" vim-plug fine shyt
call plug#begin()
" plugin list
Plug 'qaptoR-nvim/chocolatier.nvim'
-Plug 'nvim-tree/nvim-web-devicons'
+Plug 'nvim-tree/nvim-web-devicons'
Plug 'ficcdaf/ashen.nvim'
+Plug 'llathasa-veleth/vim-brainfuck'
call plug#end()