Skip to content

Instantly share code, notes, and snippets.

@akay-10
akay-10 / Microsoft.PowerShell_profile.ps1
Created June 15, 2022 11:07
Powershell7 PROFILE file for oh-my-posh3 and PSReadLine2.2.5
using namespace System.Management.Automation
using namespace System.Management.Automation.Language
if ($host.Name -eq 'ConsoleHost') {
Import-Module PSReadLine
}
Import-Module -Name Terminal-Icons
// task3.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include <stdio.h>
#include <cstring>
#include <limits>
#include <cfloat>
#include <stdlib.h>
#include <math.h>
@akay-10
akay-10 / .vimrc
Created July 29, 2023 19:12
My vimrc
" LINK: https://www.freecodecamp.org/news/vimrc-configuration-guide-customize-your-vim-editor/
" Disable compatibility with vi which can cause unexpected issues.
set nocompatible
" Enable type file detection. Vim will be able to try to detect the type of file in use.
filetype on
" Enable plugins and load plugin for the detected file type.
filetype plugin on