This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Build Results | |
[Bb]in/ | |
# Eclipse files | |
.settings/ | |
.metadata/ | |
# JetBrains IDE files | |
.idea/ | |
*.iml |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Build results | |
[Dd]ebug/ | |
[Dd]ebugPublic/ | |
# [Dd]oc/ # Uncomment if docs don't need to be uploaded | |
# [Dd]ocs/ # Uncomment if docs don't need to be uploaded | |
[Rr]elease/ | |
[Rr]eleases/ | |
x64/ | |
x86/ | |
[Ww][Ii][Nn]32/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" Basic settings | |
set number | |
set splitright | |
set tabstop=4 | |
set shiftwidth=4 | |
" Cursor shape: line in insert mode, block in normal mode | |
let &t_SI = "\e[6 q" | |
let &t_EI = "\e[2 q" |