Giter VIP home page Giter VIP logo

dotfiles's Introduction

git color

git config --global user.name "Matt Mix" git config --global user.email "[email protected]" git config --global core.editor nvim git config --global color.ui true

vim-colors-solarized

https://github.com/altercation/vim-colors-solarized

ZSH

dnf install zsh curl -L http://install.ohmyz.sh | sh

Tmux plugin manager

git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm

tmux ~/.tmux.conf

List of plugins

set -g @plugin 'tmux-plugins/tpm' set -g @plugin 'tmux-plugins/tmux-sensible' set -g @plugin 'seebi/tmux-colors-solarized'

Other examples:

set -g @plugin 'github_username/plugin_name'

set -g @plugin '[email protected]/user/plugin'

set -g @plugin '[email protected]/user/plugin'

Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)

run -b '~/.tmux/plugins/tpm/tpm'

set -g @colors-solarized 'dark' set -g default-command /bin/zsh

install neovim python pip thing

pip3 install --user --upgrade pynvim

follow instructions

https://github.com/deoplete-plugins/deoplete-go

nvim ~/.config/nvim/init.vim

" nerdtree map :NERDTreeToggle autocmd bufenter * if (winnr("$") == 1 && exists("b:NERDTree") && b:NERDTree.isTabTree()) | q | endif " end nerdtree

" fzf map ; :FZF " end fzf

call plug#begin() Plug 'junegunn/fzf', { 'dir': '/.fzf', 'do': './install --all' } Plug 'w0rp/ale' Plug 'sheerun/vim-polyglot' Plug 'scrooloose/nerdtree' Plug 'itchyny/lightline.vim' Plug 'micha/vim-colors-solarized' Plug 'fatih/vim-go', { 'do': ':GoUpdateBinaries' } Plug 'Shougo/deoplete.nvim', { 'do': ':UpdateRemotePlugins' } Plug 'deoplete-plugins/deoplete-go', { 'do': 'make'} Plug 'nsf/gocode', { 'rtp': 'nvim', 'do': '/.config/nvim/plugged/gocode/nvim/symlink.sh' } call plug#end()

if has('nvim') " Enable deoplete on startup let g:deoplete#enable_at_startup = 1 let g:deoplete#sources#go#gocode_binary = "/development/bin/gocode" endif

" tell it to use an undo file set undofile " set a directory to store the undo history set undodir=/root/.vimundo/ set hidden

set number

syntax enable set background=dark colorscheme solarized

dotfiles's People

Contributors

mwmix avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.