Skip to content

Instantly share code, notes, and snippets.

@returnwellbeing
returnwellbeing / vim_build_option.md
Last active December 14, 2018 12:36
시스템 클립보드 사용가능

vim configure option

./configure \
--enable-cscope \
--with-features=huge \
--with-x \
--enable-pythoninterp \
--with-python-config-dir=/usr/lib/python2.7/config
@returnwellbeing
returnwellbeing / cmakelist_template.md
Last active December 16, 2018 09:57
CMakeLists.txt 예제
cmake_minimum_required(VERSION 3.0)
project(codeforce_practice)

# Set the output folder where your program will be created
set(CMAKE_BINARY_DIR ${CMAKE_SOURCE_DIR}/bin)
set(EXECUTABLE_OUTPUT_PATH ${CMAKE_BINARY_DIR})
set(LIBRARY_OUTPUT_PATH ${CMAKE_BINARY_DIR}/lib)

# The following folder will be included
@returnwellbeing
returnwellbeing / dropbox.md
Last active January 23, 2019 13:15
dropbox 설치 방법

Dropbox

cd ~ && wget -O - "https://www.dropbox.com/download?plat=lnx.x86_64" | tar xzf -
sudo ln -s ~/.dropbox-dist/dropboxd /usr/local/bin/dropboxd
mkdir ~/Dropbox && cd ~/Dropbox && dropboxd

참고

@returnwellbeing
returnwellbeing / .ycm_extra_conf.py
Created April 10, 2019 07:56 — forked from jassinm/.ycm_extra_conf.py
c++11 youcompleteme
import os
import ycm_core
from clang_helpers import PrepareClangFlags
# Set this to the absolute path to the folder (NOT the file!) containing the
# compile_commands.json file to use that instead of 'flags'. See here for
# more details: http://clang.llvm.org/docs/JSONCompilationDatabase.html
# Most projects will NOT need to set this to anything; you can just change the
# 'flags' list of compilation flags. Notice that YCM itself uses that approach.
compilation_database_folder = ''