All Projects → vsouza → .vimrc

vsouza / .vimrc

Licence: other
My Vim Setup

Programming Languages

Vim Script
2826 projects

Projects that are alternatives of or similar to .vimrc

TheVimIDE
Modern Vim IDE with support for C/C++, Java, Python, Lua, PHP, JavaScript, Ruby and much more ...
Stars: ✭ 33 (+37.5%)
Mutual labels:  syntastic, nerdtree
navim
A full-blown IDE based on Neovim (or Vim) with better navigation.
Stars: ✭ 16 (-33.33%)
Mutual labels:  vimrc, airline
dotfiles
My personal monorepo: dotfiles, /etc-files, single-file scripts, vim plugins, webexts/userscripts, xmonad config, all that stuff…
Stars: ✭ 84 (+250%)
Mutual labels:  vimrc
vimrc-builder
ⓥ vimrc file builder
Stars: ✭ 54 (+125%)
Mutual labels:  vimrc
dotfiles
my personal dotfiles for tmux, bash, vim and git
Stars: ✭ 73 (+204.17%)
Mutual labels:  vimrc
nvim
There are many neovim configurations, but this one is mine...
Stars: ✭ 41 (+70.83%)
Mutual labels:  vimrc
nvim configration
Neovim diy develop enviroment.This project integrates neovim tmux zsh and some very useful plugs of them including YouCompleteMe FZF auto pairs nerdtree ncm2 and so on.
Stars: ✭ 22 (-8.33%)
Mutual labels:  nerdtree
dotfiles
Poom's Neovim, Tmux, Fish and other configurations for macOS & Linux. Literally my entire world.
Stars: ✭ 36 (+50%)
Mutual labels:  vimrc
dotfiles
A total nord dotfiles used by me. Forever work in progress.
Stars: ✭ 35 (+45.83%)
Mutual labels:  vimrc
dotfiles
My main working machine setup. Here be cyber dragons, and optional bugs.
Stars: ✭ 35 (+45.83%)
Mutual labels:  vimrc
dotfiles
No description or website provided.
Stars: ✭ 20 (-16.67%)
Mutual labels:  vimrc
VAOS
Virtual Aviation Operations System
Stars: ✭ 44 (+83.33%)
Mutual labels:  airline
vimrc
Simple VIM settings in a single .vimrc file.
Stars: ✭ 24 (+0%)
Mutual labels:  vimrc
nvim
Structure, documented, super fast neovim configuration. 可能是翻斗花园最好用的 neovim 配置[^1]。
Stars: ✭ 223 (+829.17%)
Mutual labels:  vimrc
syntastic-extras
Additional Syntastic syntax checkers and features (for Vim)
Stars: ✭ 31 (+29.17%)
Mutual labels:  syntastic
terminal-themes
rc files for vim, tmux, iterm and zsh
Stars: ✭ 18 (-25%)
Mutual labels:  vimrc
dotfiles
🔯 A collection of my rc files (tmux, neovim, zsh, fish, poetry, git, ...etc) and utilities that make everyday coding fun!
Stars: ✭ 23 (-4.17%)
Mutual labels:  vimrc
lightline-gitdiff
Show added, deleted and modified lines (`git diff`) in your statusline or lightline
Stars: ✭ 27 (+12.5%)
Mutual labels:  gitgutter
angr.vim
A pleasant, mild, dark (n)vim theme.
Stars: ✭ 53 (+120.83%)
Mutual labels:  airline
config
holy cow, wholly config! Vim, Zshell, Ack, & the rest of my dot-files.
Stars: ✭ 21 (-12.5%)
Mutual labels:  vimrc

.vimrc

My Vim Setup with Bundle with a beautiful theme and fonts..

suports

  • Python
  • Go
  • PHP
  • HackLang
  • HTML
  • Markdown
  • jinja2
  • Blade
  • Json
  • ReactJS
  • and some more..

Dependencies

for MacOSX

brew install ctags-exuberant

Plugins

Appearence

Theme

hybrid-theme

Font

Source code pro

Customizations

Basic Configurations

set t_Co=256
colorscheme Tomorrow-Night      " awesome colorscheme
syntax enable                   " enable syntax processing
set tabstop=4                   " number of visual spaces per TAB
set softtabstop=4               " number of spaces in tab when editing
set expandtab                   " tabs are spaces
set linebreak                   " Causes vim to not wrap text in the middle of a word
set pastetoggle=<F9>            " Useful so auto-indenting doesn't mess up code when pasting
set backspace=indent,eol,start

UI config

set number              " show line numbers
set showcmd             " show command in bottom bar
"set cursorline          " highlight current line
filetype indent on      " load filetype-specific indent files
set wildmenu            " visual autocomplete for command menu
set lazyredraw          " redraw only when we need to.
set showmatch           " highlight matching [{()}]

Search

set incsearch           " search as characters are entered
set hlsearch            " highlight matches
nnoremap <leader><space> :nohlsearch<CR>

Folders

set foldenable          " enable folding
set foldlevelstart=10   " open most folds by default
set foldnestmax=10      " 10 nested fold max
nnoremap <space> za
set foldmethod=indent   " fold based on indent level

Movements

" move vertically by visual line
nnoremap j gj
nnoremap k gk

" highlight last inserted text
nnoremap gV `[v`]

Airline

let g:airline_left_sep  = '>> '
let g:airline_right_sep = '<< '

let g:airline#extensions#tabline#enabled = 1
let g:airline#extensions#tabline#fnamemod = ':t'

Syntastic

set statusline+=%#warningmsg#
set statusline+=%{SyntasticStatuslineFlag()}
set statusline+=%*

let g:syntastic_always_populate_loc_list = 1
let g:syntastic_auto_loc_list = 1
let g:syntastic_check_on_open = 1
let g:syntastic_check_on_wq = 0

Tagbar

nmap <F6> :TagbarToggle<CR>

Vim-go

let g:go_fmt_fail_silently = 1
let g:go_fmt_command = "goimports"

let g:go_highlight_space_tab_error = 0
let g:go_highlight_array_whitespace_error = 0
let g:go_highlight_trailing_whitespace_error = 0

let g:go_highlight_space_tab_error = 0
let g:go_highlight_extra_types = 0
let g:go_highlight_methods = 0
let g:go_highlight_functions = 0

Buffers

map gn :bn<cr>
map gp :bp<cr>
map gd :bd<cr>  

Nerdtree

let NERDTreeHighlightCursorline = 1
let NERDTreeIgnore = ['\~$', '.*\.pyc$', 'pip-log\.txt$', 'whoosh_index',
                    \ 'xapian_index', '.*.pid', 'monitor.py', '.*-fixtures-.*.json',
                    \ '.*\.o$', 'db.db', 'tags.bak']

let NERDTreeMinimalUI = 1
let NERDTreeDirArrows = 1
let NERDChristmasTree = 1
let NERDTreeChDirMode = 2
let NERDTreeMapJumpFirstChild = 'gK'
nmap <F5> :NERDTreeToggle<CR>

GitGutter

let g:gitgutter_eager = 0
let g:gitgutter_enabled = 1
let g:gitgutter_max_signs = 1000

Disable arrows

noremap <Up> <NOP>
noremap <Down> <NOP>
noremap <Left> <NOP>
noremap <Right> <NOP>

License

MIT License © Vinicius Souza

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].