Skip to content

Instantly share code, notes, and snippets.

View ianpatricck's full-sized avatar
⏲️
Working against time

Ian Patrick ianpatricck

⏲️
Working against time
View GitHub Profile
@ianpatricck
ianpatricck / init.vim
Last active November 11, 2023 14:56
Simple settings from Neovim
set number
set ts=4 sw=4
set nowrap
set autoindent
set mouse=a
set cursorline
set shiftwidth=2
set guicursor=n-v-c-i:block
syntax enable
@ianpatricck
ianpatricck / .vimrc
Last active January 4, 2024 12:37
Simple settings from Vim
" Instalar o Plug (Plugin manager)
call plug#begin()
Plug 'https://github.com/preservim/nerdtree', { 'on': 'NERDTreeToggle' }
Plug 'dracula/vim', { 'as': 'dracula' }
Plug 'vim-airline/vim-airline'
Plug 'tiagofumo/vim-nerdtree-syntax-highlight'
call plug#end()