A collection of scripts and configurations for Bash (and others)
Nie możesz wybrać więcej, niż 25 tematów
Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
|
- 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
|