Skip to content

gokhanettin/dotfiles

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

36 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Dotfiles

My dotfiles.

Vim & Neovim

I use neovim most of the time, but vim should also work with my configuration.

Install dependecies

Instal setup and plugin dependecies.

$ sudo apt-get install git curl cmake silversearcher-ag xsel python-dev \
    python-pip python3-dev python3-pip
$ pip install neovim
$ pip3 install neovim

Install powerline fonts.

$ git clone --depth 1 https://github.com/powerline/fonts.git /tmp/fonts
$ /tmp/fonts/install.sh

If you are using a terminal emulator you may want to create a new profile with your favorite powerline font.

Setup

$ git clone https://github.com/gokhanettin/dotfiles.git ~/.dotfiles
$ cd ~/.dotfiles
$ bash setup.sh --all

Here are all the possible options:

$ bash setup.sh -h
Usage: setup.sh [OPTIONS]

OPTIONS
   -h, --help           Print this help message
   --git                Setup git
   --vim                Setup vim
   --all                Setup all
   --refresh            Refresh all links
   --rm                 Remove all links

C/C++ Notes

ycm_extra_conf.py feeds various compilation flags to YouCompleteMe. It is capable of parsing the nearest .clang_complete file to the current compilation unit (i.e. a source file such as *.c, *.cpp). It can also retrieve compilation flags from a compilation database. You can get CMake to generate this database by adding set(CMAKE_EXPORT_COMPILE_COMMANDS ON) to your CMakeLists.txt file.

Here is how you can dump default include directories given in clang_complete.

$ # For C
$ g++ -E -xc - -v < /dev/null
$ clang++ -E -xc - -v < /dev/null
$ # For C++
$ g++ -E -xc++ - -v < /dev/null
$ clang++ -E -xc++ - -v < /dev/null

About

Some of my dotfiles

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published