summaryrefslogtreecommitdiff
path: root/cfg/.vimrc
diff options
context:
space:
mode:
authorczjstmax <jstmaxlol@disroot.org>2025-11-20 22:47:23 +0100
committerczjstmax <jstmaxlol@disroot.org>2025-11-20 22:47:23 +0100
commit7ea4d76e45763469097d591377e0bbdcc0b7a184 (patch)
tree26d9017689d696dee14aefe1112e7696bfb0d7ba /cfg/.vimrc
parent694a53cb977aa0f5e7ae264ff586b724ecc01566 (diff)
added `:set mouse=` to .vimrc
Diffstat (limited to 'cfg/.vimrc')
-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()