diff options
| author | czjstmax <jstmaxlol@disroot.org> | 2025-11-20 22:47:23 +0100 |
|---|---|---|
| committer | czjstmax <jstmaxlol@disroot.org> | 2025-11-20 22:47:23 +0100 |
| commit | 7ea4d76e45763469097d591377e0bbdcc0b7a184 (patch) | |
| tree | 26d9017689d696dee14aefe1112e7696bfb0d7ba /cfg | |
| parent | 694a53cb977aa0f5e7ae264ff586b724ecc01566 (diff) | |
added `:set mouse=` to .vimrc
Diffstat (limited to 'cfg')
| -rw-r--r-- | cfg/.vimrc | 9 |
1 files changed, 7 insertions, 2 deletions
@@ -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() |