Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jluisrojas/vim-setup
Configuración personal de vim
https://github.com/jluisrojas/vim-setup
Last synced: 11 days ago
JSON representation
Configuración personal de vim
- Host: GitHub
- URL: https://github.com/jluisrojas/vim-setup
- Owner: jluisrojas
- Created: 2019-07-26T03:12:57.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-08-23T18:57:04.000Z (over 5 years ago)
- Last Synced: 2024-11-06T05:24:23.151Z (2 months ago)
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# vim-setup
## .vimrc````vim
" Pa que se vean los numeros en las lineas
set nu
set tabstop=4
set backspace=indent,eol,start
" Para que se vea mejor el markdown
set linebreak
" para que funcione clipboard
set clipboard=unnamedset nocompatible " be iMproved, required
filetype off " required" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" alternatively, pass a path where Vundle should install plugins
"call vundle#begin('~/some/path/here')" let Vundle manage Vundle, required
Plugin 'VundleVim/Vundle.vim'" Plugins:
Plugin 'scrooloose/nerdtree'
Plugin 'flazz/vim-colorschemes'
" Plugin 'jistr/vim-nerdtree-tabs'
Plugin 'Lokaltog/powerline', {'rtp': 'powerline/bindings/vim/'}
Plugin 'whatyouhide/vim-gotham'
Plugin 'Yggdroot/indentLine'
Plugin 'vim-python/python-syntax'
" Para el markdown
Plugin 'godlygeek/tabular'
Plugin 'plasticboy/vim-markdown'" All of your Plugins must be added before the following line
call vundle#end() " required
filetype plugin indent on " required
" To ignore plugin indent changes, instead use:
"filetype plugin on
"
" Brief help
" :PluginList - lists configured plugins
" :PluginInstall - installs plugins; append `!` to update or just :PluginUpdate
" :PluginSearch foo - searches for foo; append `!` to refresh local cache
" :PluginClean - confirms removal of unused plugins; append `!` to auto-approve removal
"
" see :h vundle for more details or wiki for FAQ
" Put your non-Plugin stuff after this line:au BufNewFile,BufRead *.py
\ set tabstop=4 |
\ set softtabstop=4 |
\ set shiftwidth=4 |
\ set textwidth=79 |
\ set expandtab |
\ set autoindent |
\ set fileformat=unixsyntax on
let g:python_highlight_all = 1
set t_Co=256
colorscheme gotham" let g:indentLine_color_gui = '#195466'
" let g:indentLine_setColors = 0
let g:indentLine_char = '▏'
````
## .tmux.conf
`````
set -g status-right %H:%M
``````
## .bash_profile
`````
# para quitar username y eso
export PS1="\W \$ "
`````