Skip to content

Instantly share code, notes, and snippets.

View ZDSDD's full-sized avatar
🌾
Focusing

Sebastian Sadowy ZDSDD

🌾
Focusing
View GitHub Profile
[alias]
tree = log --graph --decorate --pretty=oneline --abbrev-commit
st = status -s -b
@ZDSDD
ZDSDD / .ideavimrc
Created March 20, 2024 10:28 — forked from AlexPl292/.ideavimrc
My `~/.ideavimrc` file
let mapleader=" "
""" Plugins --------------------------------
set surround
set multiple-cursors
set commentary
set argtextobj
set easymotion
set textobj-entire
set ReplaceWithRegister
@ZDSDD
ZDSDD / CMakeLists.txt
Created May 7, 2023 12:18
Example of CLion CMakeLists.txt to use SFML lib
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)