commit c0b7e46cb92ff07a16a7556e822fb012c15aae0b Author: Kacper Donat Date: Mon Feb 19 18:42:00 2018 +0100 Add basic configuration 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 0000000..44a2f15 Binary files /dev/null and b/PowerShell/Modules/php/php.psd1 differ diff --git a/PowerShell/Modules/php/php.psm1 b/PowerShell/Modules/php/php.psm1 new file mode 100644 index 0000000..73459ea --- /dev/null +++ b/PowerShell/Modules/php/php.psm1 @@ -0,0 +1,51 @@ +$script:versions = @{ } + +function Add-PhpVersion { + [CmdletBinding()] + param( + [Parameter(Position=0, Mandatory=$true)] + [Alias('Ver', 'Php')] + [string] + $Version, + + [Parameter(Position=1, Mandatory=$true)] + [string] + $Path, + + [Parameter(Mandatory=$false)] + [switch] + $Set = $false + ) + + $php = Join-Path $Path 'php.exe' + + if (-not (Test-Path $php)) { + Write-Error "PHP is not installed in that directory, maybe you have misspeled that?" + return + } + + $script:versions[$Version] = $Path; + + if ($Set) { + Set-PhpVersion $Version + } +} + +function Set-PhpVersion { + [CmdletBinding()] + param( + [Parameter(Position=0)] + [string] + $Version + ); + + if (-not $script:versions.ContainsKey($Version)) { + Write-Error "You have not declared $Version to be installed, maybe you should call Add-PhpVersion?" + return + } + + $env:Path = (@($env:Path -split ';' | Where-Object { (-not $script:versions.ContainsKey($_)) -and $_ }) + @($script:versions[$Version])) -join ';' + $env:PHP_VER = $Version; + + Write-Output "PHP Version set to $Version installed in $($script:versions[$Version])" +} \ No newline at end of file diff --git a/PowerShell/Scripts/.gitignore b/PowerShell/Scripts/.gitignore new file mode 100644 index 0000000..d6b7ef3 --- /dev/null +++ b/PowerShell/Scripts/.gitignore @@ -0,0 +1,2 @@ +* +!.gitignore diff --git a/PowerShell/aliases.ps1 b/PowerShell/aliases.ps1 new file mode 100644 index 0000000..423cf6c --- /dev/null +++ b/PowerShell/aliases.ps1 @@ -0,0 +1,21 @@ +# APPS +Set-Alias python3 "C:\Users\k_don\AppData\Local\Programs\Python\Python35\python.exe" + +Set-Alias sharex "C:\Program Files\ShareX\ShareX.exe" + +# Aliases +Set-Alias composer Run-Composer +Set-Alias dep Run-Deployer +Set-Alias phpmd Run-PhpMD +Set-Alias box Run-Box +Set-Alias symfony Run-Symfony +Set-Alias artisan Start-Artisan + +Set-Alias ofe Open-FileExplorer +Set-Alias upf Upload-File +Set-Alias sajbh Start-JobHere + +Set-Alias notify Show-Notification + +Set-Alias vim "C:\Program Files (x86)\Vim\vim80\vim.exe" +Set-Alias gvim "C:\Program Files (x86)\Vim\vim80\gvim.exe" \ No newline at end of file diff --git a/PowerShell/functions.ps1 b/PowerShell/functions.ps1 new file mode 100644 index 0000000..22e15dd --- /dev/null +++ b/PowerShell/functions.ps1 @@ -0,0 +1,217 @@ +function Test-IsAdmin { + try { + $identity = [Security.Principal.WindowsIdentity]::GetCurrent() + $principal = New-Object Security.Principal.WindowsPrincipal -ArgumentList $identity + return $principal.IsInRole( [Security.Principal.WindowsBuiltInRole]::Administrator ) + } catch { + throw "Failed to determine if the current user has elevated privileges. The error was: '{0}'." -f $_ + } + + <# + .SYNOPSIS + Checks if the current Powershell instance is running with elevated privileges or not. + .EXAMPLE + PS C:\> 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