DEV Community

Discussion on: What Alternative Text Editors Does DEV Use? (Not VS Code 🐱‍👓)

Collapse
 
demg_dev profile image
David Mendez Guardado

i use Vim and gVim with the same configuration

set number
set expandtab
set tabstop=4
set softtabstop=4
set shiftwidth=4
set autoindent
set textwidth=160
set guifont=hack\ 8
syntax on

set nocompatible
filetype off 

set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()

Plugin 'VundleVim/Vundle.vim'
Plugin 'morhetz/gruvbox'


call vundle#end()
filetype plugin indent on

colorscheme gruvbox
let g:gruvbox_contrast_dark='medium'
Collapse
 
csys profile image
Cheuk Yin Ng

Hello fellow gruvbox user!

Collapse
 
jacobherrington profile image
Jacob Herrington (he/him)

This is super minimal! Do you use a file browser like nerdtree?

Collapse
 
demg_dev profile image
David Mendez Guardado

nop, i just like this way, i try to install the filebrowser but i fail hahah, maybe a bad configuration :(

Thread Thread
 
codenutt profile image
Jared

Might have something to do with Vundle, I don't think it's well maintained anymore. I suggest taking a look at vim-plug

Btw, that is reaaaallly minimal lol nice 👍🏻

Collapse
 
ryanolsonx profile image
Ryan Olson • Edited

Nice! So you pretty much just use Vundle to get gruvbox? This looks similar to my config (except I just use my terminal to set colors).

filetype plugin indent on
set ttimeout
set ttimeoutlen=100
set backspace=eol,start,indent
set ruler
set autoindent
set expandtab
set shiftwidth=2
set softtabstop=2
set tabstop=2
set path=.,**
set wildmenu
set autoread
nnoremap <silent> <space> :set relativenumber!<cr>