A collection of scripts and configurations for Bash (and others)
Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
|
- 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
|