From 7ea4d76e45763469097d591377e0bbdcc0b7a184 Mon Sep 17 00:00:00 2001 From: czjstmax Date: Thu, 20 Nov 2025 22:47:23 +0100 Subject: added `:set mouse=` to .vimrc --- cfg/.vimrc | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'cfg') 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 :wa " 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() -- cgit v1.3.1