From c0b7e46cb92ff07a16a7556e822fb012c15aae0b Mon Sep 17 00:00:00 2001 From: Kacper Donat Date: Mon, 19 Feb 2018 18:42:00 +0100 Subject: [PATCH] Add basic configuration --- .gitconfig | 15 + .ideavimrc | 57 ++ .vimrc | 136 +++ ConEmu.xml | 902 ++++++++++++++++++ PowerShell/.gitignore | 1 + .../Microsoft.PowerShellISE_profile.ps1 | 0 PowerShell/Microsoft.PowerShell_profile.ps1 | 20 + PowerShell/Modules/.gitignore | 4 + PowerShell/Modules/php/php.psd1 | Bin 0 -> 7624 bytes PowerShell/Modules/php/php.psm1 | 51 + PowerShell/Scripts/.gitignore | 2 + PowerShell/aliases.ps1 | 21 + PowerShell/functions.ps1 | 217 +++++ PowerShell/prompt.ps1 | 103 ++ install.ps1 | 18 + 15 files changed, 1547 insertions(+) create mode 100644 .gitconfig create mode 100644 .ideavimrc create mode 100644 .vimrc create mode 100644 ConEmu.xml create mode 100644 PowerShell/.gitignore create mode 100644 PowerShell/Microsoft.PowerShellISE_profile.ps1 create mode 100644 PowerShell/Microsoft.PowerShell_profile.ps1 create mode 100644 PowerShell/Modules/.gitignore create mode 100644 PowerShell/Modules/php/php.psd1 create mode 100644 PowerShell/Modules/php/php.psm1 create mode 100644 PowerShell/Scripts/.gitignore create mode 100644 PowerShell/aliases.ps1 create mode 100644 PowerShell/functions.ps1 create mode 100644 PowerShell/prompt.ps1 create mode 100644 install.ps1 diff --git a/.gitconfig b/.gitconfig new file mode 100644 index 0000000..1aa74a4 --- /dev/null +++ b/.gitconfig @@ -0,0 +1,15 @@ +[user] + name = Kacper Donat + email = kadet1090@gmail.com + +[alias] + st = status + ci = commit + co = checkout + br = branch + + unstage = reset HEAD -- + last = log -1 HEAD + + fuck = reset --hard + ktokurwa = blame diff --git a/.ideavimrc b/.ideavimrc new file mode 100644 index 0000000..348f51f --- /dev/null +++ b/.ideavimrc @@ -0,0 +1,57 @@ +set rnu +set surround +set vb +set ignorecase smartcase + +" Moving blocks of text in visual mode +vnoremap < >gv + +" Select all text +map a ggVG + +" reload +nnoremap vs :source ~/.ideavimrc + +" Copy until the end of the line +noremap Y y$ + +" clipboard +noremap y "*y +noremap Y "*Y +noremap p "*p +noremap P "*P + +" refactoring +nnoremap rf :action RenameFile +nnoremap rr :action RenameElement +nnoremap ll :action ReformatCode + +" actions +nnoremap ;; :action CommentByLineComment +nnoremap b :action ToggleLineBreakpoint +nnoremap oi :action OptimizeImports + +nnoremap ee :action SearchEverywhere +nnoremap :action Switcher + +" gotos +nnoremap gi :action GotoImplementation +nnoremap gs :action GotoSuperMethod +nnoremap gu :action ShowUsages + +" unimpaired mappings +nnoremap [ Oj +nnoremap ] ok +nnoremap q[ :action PreviousOccurence +nnoremap q] :action NextOccurence +nnoremap m[ :action MethodUp +nnoremap m] :action MethodDown +nnoremap c[ :action VcsShowPrevChangeMarker +nnoremap c] :action VcsShowNextChangeMarker + +" blank lines +nnoremap j :set pastem`o``:set nopaste +nnoremap k :set pastem`O``:set nopaste +nnoremap space j +nnoremap space k diff --git a/.vimrc b/.vimrc new file mode 100644 index 0000000..ac57274 --- /dev/null +++ b/.vimrc @@ -0,0 +1,136 @@ +set nocompatible " be iMproved, required + +if has('win32') || has ('win64') + let $VIMHOME = $HOME."/vimfiles" +else + let $VIMHOME = $HOME."/.vim" +endif + +call plug#begin($VIMHOME.'/plugged') + +Plug 'terryma/vim-multiple-cursors' +Plug 'thinca/vim-localrc' +Plug 'vim-airline/vim-airline' +Plug 'vim-airline/vim-airline-themes' +Plug 'nightsense/seagrey' +Plug 'lervag/vimtex' +Plug 'eagletmt/neco-ghc' +Plug 'ctrlpvim/ctrlp.vim' +Plug 'tpope/vim-surround' +" Plug 'Valloric/YouCompleteMe' +" Plug 'scrooloose/nerdtree' + +call plug#end() + +set backupdir=$TEMP// +set directory=$TEMP// + +set colorcolumn=80,120 + +" +" My own config +" +let g:ycm_global_ycm_extra_conf = "~\vimfiles\.ycm_extra_conf.py" +let g:ycm_autoclose_preview_window_after_insertion = 1 + +let g:airline_powerline_fonts = 1 +let g:airline_theme = "deus" +let g:airline#extensions#tabline#enabled = 1 + +set splitbelow +set shellslash + +" UTF-8 support +if has("multi_byte") + if &termencoding == "" + let &termencoding = &encoding + endif + set enc=utf-8 + set encoding=utf-8 + setglobal fileencoding=utf-8 + " setglobal bomb + " set fileencodings=ucs-bom,utf-8,latin1 +endif + +set backspace=2 +set autoindent + +" tabs +set expandtab +set tabstop=4 +set shiftwidth=4 + +" syntax +syntax on +set number + +" disable bells +set noeb vb t_vb= + +nmap \\ :CtrlP + +" filetypes +" autocmd FileType c,cpp :compiler cl +au FileType asm :set ft=masm + +" one time settings +if !exists("g:running") + " Conemu specific settings + if !has('gui_running') && !has('nvim') + set term=xterm + set t_Co=256 + + inoremap + nnoremap + + let &t_AB="\e[48;5;%dm" + let &t_AF="\e[38;5;%dm" + + inoremap [62~ + inoremap [63~ + nnoremap [62~ + nnoremap [63~ + endif + + if has('gui_running') + set guifont=Fira_Code_Medium:h9:cANSI:qDRAFT + set guioptions= + + set columns=200 + set lines=58 + + colorscheme seagrey-dark + endif +endif + +" latex +let g:vimtex_view_general_viewer = 'SumatraPDF' +let g:vimtex_view_general_options + \ = '-reuse-instance -forward-search @tex @line @pdf' + +let g:running = 1 + +set completeopt=longest,menuone +inoremap pumvisible() ? "\" : "\u\" + +" open omni completion menu closing previous if open and opening new menu without changing the text +inoremap (pumvisible() ? (col('.') > 1 ? 'i' : 'i') : '') . + \ '=pumvisible() ? "\C-n>\C-p>\Down>" : ""' + +" remapings +nnoremap YY :%y+ + +nnoremap :nohlsearch + +noremap y "*y +noremap Y "*Y +noremap p "*p +noremap P "*P + +nnoremap gT +nnoremap gt + +nnoremap a ggVG + +vnoremap > >gv +vnoremap < + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PowerShell/.gitignore b/PowerShell/.gitignore new file mode 100644 index 0000000..af1e243 --- /dev/null +++ b/PowerShell/.gitignore @@ -0,0 +1 @@ +local.ps1 diff --git a/PowerShell/Microsoft.PowerShellISE_profile.ps1 b/PowerShell/Microsoft.PowerShellISE_profile.ps1 new file mode 100644 index 0000000..e69de29 diff --git a/PowerShell/Microsoft.PowerShell_profile.ps1 b/PowerShell/Microsoft.PowerShell_profile.ps1 new file mode 100644 index 0000000..606af0b --- /dev/null +++ b/PowerShell/Microsoft.PowerShell_profile.ps1 @@ -0,0 +1,20 @@ +#default encoding for dconsole +[Console]::OutputEncoding = New-Object -typename System.Text.UTF8Encoding +[Console]::InputEncoding = New-Object -typename System.Text.UTF8Encoding + +Import-Module posh-git +Import-Module php + +$__dir__ = $(Get-Item $profile).Directory; + +. "$__dir__\functions.ps1" +. "$__dir__\aliases.ps1" +. "$__dir__\prompt.ps1" + +if (Test-Path "$__dir__\local.ps1") { + . "$__dir__\local.ps1" # load local configuration if needed +} + +$global:admin = Test-IsAdmin + +Set-PSReadlineOption -HistoryNoDuplicates diff --git a/PowerShell/Modules/.gitignore b/PowerShell/Modules/.gitignore new file mode 100644 index 0000000..7709edd --- /dev/null +++ b/PowerShell/Modules/.gitignore @@ -0,0 +1,4 @@ +/* + +!.gitignore +!php diff --git a/PowerShell/Modules/php/php.psd1 b/PowerShell/Modules/php/php.psd1 new file mode 100644 index 0000000000000000000000000000000000000000..44a2f155c6011d533cb953b94d67935aa6a327dd GIT binary patch literal 7624 zcmeI1TW=dh6vyWoiSJ-34@nUTO$av$P_3k)5oxG$DLnAv_*PTjYCBCU)UOWwe{(#U z8Sif5xG5lnEPH2nXU_c3{haZie>`%(yN}&R{=4RC?$kBi#P!_R&2%?#BiC}5uJ78q z8|h8WUFhx5H8g%(n90}ocQf}wBYu0D!5$6K>$#5RO!a)r zV>!{^Vc=wSK)i1@0Pw(QP|egl#A!0HPM@%Ru8piC>{nv&Qtj4=r=_W z_psg5T^DH?hHdTraADU|?K0K}IR%cNNurO%0el;p>9wr)G;^T&$fqZCNUm&t&9Ubr zx8WXSTpqf8J--y6Cf%9nagQ`#>Dm@Wbkx)SZ9Qd|j(<|lI}-fCojapzeC|lLP~X<~ zbFJPK+LqgOUud+eC*Szdg=Dd-@usefcck~Wp0qXlp}rRjlBx?G7|fz>(g&FG*@o*! zQEf_grqO*-!X~lVZ}ptJnV&I}++J#g1hB24zka`fCu(Bo(mephJjqi0O892ck%y*y!M>T1{&{S)%jFQQ0Ly~zQ8avX-w);w>_m$$7 zXw+q8eO)7Rym}(U*yY3_#g-(W^Skfg$5<0QHQEBQ>v(H!igSD4&`x*~Ry`K&k*J$> z6J0KDvF$a@soK{hlw*7<+W68yCaBc2r>H7+fGe& z%CVPc+kL8ezqqg6mwr^23|kuSt{}Z&A4MefN*v{}B-VP^G#Hp+RF^%kzngf58>^MD<`03p98o#?ycY?*1>9~ZVo>>SdrOKs#3s?5 zc`Z7m`VZP_dOcBPPgIRShirV`8jGQ#sFXq|g4G zb1Htb*Iaj3KEA>I-EA%Ge;3RL-oEMOtV;bSaHkmVf_>4KiatuTLkDyZ#0ZP_WR1|9 z@;0xk(zn#|Xq0Xko!WY{&J(R$>~ufN`re}Dgs4EC40sl~DEFxYpU+}N4Q}JN?cNBZ z#XBqyOQq_?dx~+1$R26{?9U>n^<(zj`g(E(bE%7wADo7s)y@O@dWUCDbOj9=nCO$Q zpnt=2tsV&;ZCw#35$s`|uu;IbiQm>MK%H92y5Z3MTdiZ63~vJ+T+u<_CL#0kqBPOf z<4ls4g+5v6fA)l~HRtGm9W3ggd8>3x{<##FmHl&XZJbNlnais3#|w+JmPJ9|3JApEmg6ecYezoP z5+N;@Acel}(p-YAaAw%_XG(M_M9cD%)tH|G!Zb_7-O6)Ce4nF9tCH1`9EevUdfcTP z1vOL8_nsE}TjHH_v7jjs(3OPykQ-8&-FN=YdpR;4nFVcOP1aS~38dwC&~mc7uQ`UD zu4Agq%AG}_REN~yX{QY3+zPlO8!|J{j3>c%5?0oeo7dzrji^im@gISjcIA^}ubLHR zuW7}ZP<6dl8nV{0@Q12r<|R~KRRp=>KV)P(H{;|W+IOy3q=e6L5=cI`3{Tx_XA8(5 zN?qZ>mzZOHkVzt74%Zxe(IUgVaAkg7-*b8Wk*<+Dc7u Test-IsAdmin + .OUTPUTS + System.Boolean + True if the current Powershell is elevated, false if not. + #> +} + +function Pick-One { + [CmdletBinding()] + param( + [String[]]$options + ); + + $rand = Get-Random -Minimum 0 -Maximum $options.Length; + + foreach ($option in $options) { + if($option -eq $options[$rand]) { + Write-Host -ForegroundColor Green '=> ' $option; + } else { + Write-Host ' ' $option -ForegroundColor DarkGray; + } + } +} + +function Prepend-LineNumbers { + [CmdletBinding()] + param( + [Parameter(ValueFromPipeline=$true)]$input, + [int]$pad = 4 + ); + + $line = 0; + $input | % { + $line++; + + $line.ToString().PadLeft($pad, ' ') + " $_" + } +} + +function Fix-Colors { + [System.Console]::ForegroundColor = [System.ConsoleColor]::White; + [System.Console]::BackgroundColor = [System.ConsoleColor]::Black; + $escape = [char]27 + + echo "$escape[0m" +} + +function Upload-File { + param([string]$Path) + + sharex $(Resolve-Path $Path) +} + +function Set-VsVars +{ + [CmdletBinding()] + param( + [Parameter(Mandatory=$true, HelpMessage="Enter VS version as 2010, 2012, 2013, 2015, 2017, 2017-BuildTools")] + [ValidateSet(2010,2012,2013,2015,2017,'2017-BuildTools')] + [string]$Version, + + [Parameter(Mandatory=$false, HelpMessage="Architecture either x64, x86 or arm (2017 only)")] + [Alias('Arch')] + [ValidateSet('x64', 'x86', 'arm')] + [string]$Architecture + ) + + $VS_VERSION = @{ + 2010 = " 10.0"; + 2012 = " 11.0"; + 2013 = " 12.0"; + 2015 = " 14.0"; + 2017 = "\2017\Community"; + '2017-BuildTools' = '\2017\BuildTools' + } + + if($version -ge 2015) + { + $targetDir = "c:\Program Files (x86)\Microsoft Visual Studio$($VS_VERSION[$version])\Common7\Tools" + $vcvars = "VsDevCmd.bat" + + if ($Architecture) { + $params = ' -arch=' + $Architecture + } + } + else + { + $targetDir = "c:\Program Files (x86)\Microsoft Visual Studio$($VS_VERSION[$version])\VC" + $vcvars = "vcvarsall.bat" + + if($Architecture -eq 'x64') { + $Architecture = 'x86_64'; + } + + if ($Architecture) { + $params = ' ' + $Architecture + } + } + + if (!(Test-Path (Join-Path $targetDir $vcvars))) { + "Error: Visual Studio $version not installed" + return + } + + $command = $vcvars + $params + + pushd $targetDir + Write-Verbose "$command & set" + + cmd /c "$command & set" | % { + if ($_ -match "(.*?)=(.*)") { + Write-Verbose $_ + + Set-Item -force -path "ENV:\$($matches[1])" -value "$($matches[2])" + } + } + popd + + write-host "`nVisual Studio $version Command Prompt variables set." -ForegroundColor Yellow +} + +function Import-VariablesFromCmd +{ + [CmdletBinding()] + param([string]$path) + cmd /c $path + "&set" | % { + if ($_ -match "(.*?)=(.*)") { + Write-Verbose $_ + + Set-Item -force -path "ENV:\$($matches[1])" -value "$($matches[2])" + } + } +} + +# not working, will get fixed eventually +function Out-PasteBin +{ + [CmdletBinding()] + param( + [Parameter( + Position=0, + ValueFromPipeline=$true, + parametersetname='nopipeline' + )][string] $File, + [Parameter( + Position=1, + ValueFromPipelineByPropertyName=$true + )][string] $Language, + [Parameter( + ValueFromPipelineByPropertyName=$true + )][string] $Author, + [Parameter( + ValueFromPipelineByPropertyName=$true + )][string] $Title, + [Parameter( + ValueFromPipelineByPropertyName=$true + )][string] $Key = $global:PastebinKey + ) + + Begin { + $pipeline = -not ($PSCmdlet.ParameterSetName -eq 'nopipeline'); + } + + Process { + $Source += $_ + "`n"; + } + + End { + $paste = if ($pipeline) { $Source } else { cat $File | Out-String } + + return (Invoke-WebRequest bin.kadet.net -Method Post -MaximumRedirection 0 -ErrorAction SilentlyContinue -Body @{ + author=$Author; + key=$Key; + title=$Title; + language=$Language; + paste=$paste; + }) + } +} + +function ~ { + cd ~ @args; +} + +function .. { + cd .. @args; +} + + +function Run-Box { + php '-dphar.readonly=0' "D:\Software\box.phar" @args; +} + +function Run-Symfony { + $path = if (Test-Path ./bin/console) { "./bin/console" } + elseif (Test-Path ./app/console) { "./app/console" } + else { throw "oh die" }; + + php $path @args; +} + +function Run-Artisan { + php artisan @args; +} diff --git a/PowerShell/prompt.ps1 b/PowerShell/prompt.ps1 new file mode 100644 index 0000000..d3bb9d1 --- /dev/null +++ b/PowerShell/prompt.ps1 @@ -0,0 +1,103 @@ +$script:bg = [Console]::BackgroundColor; +$script:fg = [System.ConsoleColor]::White; +$script:first = $true; +$script:last = 0; + +$global:PromptReplacementDirs = @{ + $env:USERPROFILE = '~'; +} + +function Write-PromptFancyEnd { + Write-Host  -NoNewline -ForegroundColor $script:fg + + $script:bg = [System.ConsoleColor]::Black + $script:fg = [System.ConsoleColor]::White +} + +function Write-PromptSegment { + param( + [Parameter( + Position=0, + Mandatory=$true, + ValueFromPipeline=$true, + ValueFromPipelineByPropertyName=$true + )][string]$Text, + + [Parameter(Position=1)][System.ConsoleColor] $Foreground = [System.ConsoleColor]::White, + [Parameter(Position=2)][System.ConsoleColor] $Background = [Console]::BackgroundColor, + [switch] $NoSegment + ) + + Write-Host $text -NoNewline -BackgroundColor $Background -ForegroundColor $Foreground + + if (-not $NoSegment) { + Write-Host  -NoNewline -BackgroundColor $Background -ForegroundColor $Foreground + } + + $script:bg = $Background; + $script:fg = $Foreground; +} + +function Get-FancyDir { + $location = $(Get-Location).ToString(); + foreach($replacement in $global:PromptReplacementDirs.GetEnumerator()) { + $location = $location.Replace($replacement.Name, $replacement.Value); + } + + return $location.Replace('\', '  '); +} + +function Get-GitBranch { + $HEAD = Get-Content $(Join-Path $(Get-GitDirectory) HEAD) + if($HEAD -like 'ref: refs/heads/*') { + return $HEAD -replace 'ref: refs/heads/(.*?)', "$1"; + } else { + return $HEAD.Substring(0, 8); + } +} + +function Write-PromptStatus { + if($script:last) { + Write-PromptSegment ' ✔ ' Green + } else { + Write-PromptSegment " ✖ $lastexitcode " Red + } +} + +function Write-PromptUser { + if($global:admin) { + Write-PromptSegment ' ADMIN ' Red + } +} + +function Write-PromptVirtualEnv { + if($env:VIRTUAL_ENV) { + Write-PromptSegment " $(split-path $env:VIRTUAL_ENV -leaf) " Cyan + } +} + +function Write-PromptDir { + Write-PromptSegment " $(Get-FancyDir) " DarkGray -NoSegment +} + +# Depends on posh-git +function Write-PromptGit { + if(Get-GitDirectory) { + Write-PromptSegment "  $(Get-GitBranch) " Blue + } +} + +function prompt { + $script:last = $?; + $script:first = $true; + + Write-PromptStatus + Write-PromptUser + Write-PromptVirtualEnv + Write-PromptGit + Write-PromptDir + + Write-PromptFancyEnd + + return ' ' +} diff --git a/install.ps1 b/install.ps1 new file mode 100644 index 0000000..52b155d --- /dev/null +++ b/install.ps1 @@ -0,0 +1,18 @@ +# install vim-plug +md ~\vimfiles\autoload +$uri = 'https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim' +(New-Object Net.WebClient).DownloadFile( + $uri, + $ExecutionContext.SessionState.Path.GetUnresolvedProviderPathFromPSPath( + "~\vimfiles\autoload\plug.vim" + ) +) + +# create symlinks +New-Item -Type SymbolicLink -Path ~/.vimrc -Value $(Join-Path $PSScriptRoot .vimrc) +New-Item -Type SymbolicLink -Path ~/.ideavimrc -Value $(Join-Path $PSScriptRoot .ideavimrc) +New-Item -Type SymbolicLink -Path ~/.gitconfig -Value $(Join-Path $PSScriptRoot .gitconfig) +New-Item -Type SymbolicLink -Path ~/Documents/PowerShell/ -Value $(Join-Path $PSScriptRoot PowerShell) + +# install modules +Install-Module posh-git