A collection of scripts and configurations for Bash (and others)
Você não pode selecionar mais de 25 tópicos
Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
|
- so ~/.vim/plugins.vim
- so ~/.vim/cs.vim
- "so ~/.vim/wal.vim
-
- colorscheme zenburn
- "colorscheme wal.vim
-
- " Config for Airline
- so ~/.vim/airline.vim
-
- " Defaults for OmniSharp
- so ~/.vim/cs.vim
- " -- DONE
-
- " Setting up some Godot Engine bindings...
- so ~/.vim/godot.vim
-
-
- if exists('$SHELL')
- set shell=$SHELL
- else
- set shell=/bin/sh
- endif
-
- " session management
- let g:session_directory = "~/.vim/session"
- let g:session_autoload = "no"
- let g:session_autosave = "no"
- let g:session_command_aliases = 1
-
- " Configurations for NERDTree Plugin.
- map <C-o> :NERDTreeToggle<CR>
- autocmd bufenter * if (winnr("$") == 1 && exists("b:NERDTree") && b:NERDTree.isTabTree()) | q | endif
-
- " ---------------------------------------------------
- " Core configuration options...
- " ---------------------------------------------------
-
- " I like syntax highlighting
- syntax enable
-
- " Always spaces for tabs. Two spaces should be nice :)
- set expandtab
- set shiftwidth=2
- set softtabstop=2
-
- " Setting .ejs files to be highlighted like html files...
- au BufNewFile,BufRead *.ejs set filetype=html
|