This file contains 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
[alias] | |
tree = log --graph --decorate --pretty=oneline --abbrev-commit | |
st = status -s -b |
This file contains 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
let mapleader=" " | |
""" Plugins -------------------------------- | |
set surround | |
set multiple-cursors | |
set commentary | |
set argtextobj | |
set easymotion | |
set textobj-entire | |
set ReplaceWithRegister |
This file contains 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
cmake_minimum_required(VERSION 3.25) | |
project(CreatingWindow) | |
set(CMAKE_CXX_STANDARD 17) | |
add_executable(CreatingWindow main.cpp) | |
set(SFML_STATIC_LIBRARIES TRUE) | |
set(SFML_DIR "D:/SFML-2.5.1/lib/cmake/SFML") | |
find_package(SFML 2.5.1 COMPONENTS system window graphics audio REQUIRED) |