Add Tagbar. DPI. Ditch old code. Nice Merging
parent
4a8ac69ed0
commit
171c02beb3
44
.vimrc
44
.vimrc
|
@ -1,44 +0,0 @@
|
|||
set nocompatible
|
||||
filetype off
|
||||
|
||||
" Vundle
|
||||
set rtp+=~/.vim/bundle/vundle/
|
||||
call vundle#rc()
|
||||
|
||||
" Indentation related
|
||||
set tabstop=4 " How many spaces for a tab
|
||||
set expandtab " Expand tab to spaces
|
||||
set shiftwidth=4
|
||||
set softtabstop=4
|
||||
set autoindent
|
||||
set smartindent
|
||||
|
||||
" View related
|
||||
set cursorline " Highlight cursor line
|
||||
set showmatch " Match brackets
|
||||
syntax on
|
||||
|
||||
" Search related
|
||||
set incsearch " Incremental search
|
||||
set hlsearch " Highlight search
|
||||
set ignorecase
|
||||
set smartcase " Ignore ignorecase when uppercase characters are present
|
||||
|
||||
" Navigation related
|
||||
set scrolloff=3 " Minimum number of lines to show below/above the cursor
|
||||
|
||||
" Shortcuts
|
||||
set pastetoggle=<F2>
|
||||
|
||||
|
||||
" Persistent undo
|
||||
set undofile
|
||||
set undolevels=1000
|
||||
set undoreload=1000
|
||||
|
||||
" Plugins
|
||||
Bundle 'gmarik/vundle'
|
||||
Bundle 'davidhalter/jedi-vim'
|
||||
Bundle 'pathogen.vim'
|
||||
|
||||
filetype plugin indent on
|
|
@ -50,3 +50,13 @@ URxvt.keysym.C-M-v: builtin-string:
|
|||
! Perl Extensions
|
||||
!
|
||||
URxvt.perl-ext-common: selection-to-clipboard
|
||||
|
||||
|
||||
! DPI
|
||||
!xft.dpi: 180
|
||||
!Xft.autohint: 0
|
||||
!Xft.lcdfilter: lcddefault
|
||||
!Xft.hintstyle: hintfull
|
||||
!Xft.hinting: 1
|
||||
!Xft.antialias: 1
|
||||
!Xft.rgba: rgb
|
||||
|
|
|
@ -9,7 +9,7 @@ set $mod Mod4
|
|||
font pango:monospace 8
|
||||
|
||||
# Set wall to our wallpaper variable
|
||||
set $wall ~/Documents/repos/dotfiles/wallpaper.jpg
|
||||
set $wall ~/Documents/repos/dotfiles/wallpaper.png
|
||||
|
||||
# Use Mouse+$mod to drag floating windows to their wanted position
|
||||
floating_modifier $mod
|
||||
|
|
|
@ -10,21 +10,29 @@ CHOST="x86_64-pc-linux-gnu"
|
|||
# These are the USE flags that were used in addition to what is provided by the
|
||||
# profile used for building.
|
||||
GNOME="-kde X qt4 dbus gtk gnome xvmc xinerama gnome-keyring"
|
||||
SYSTEMS="symlink ftp mmx mmxext sse sse2 sse3 ssse3 samba python udev xine"
|
||||
SYSTEMS="ftp mmx mmxext sse sse2 sse3 ssse3 samba python udev xine"
|
||||
CRYPT="crypt"
|
||||
IMAGE="png gif jpeg pdf"
|
||||
VID="mp4 x264 xvid id3tag libnotify taglib matroska dts dvd"
|
||||
AUDIO="flac ogg twolame vorbis acc pulseaudio"
|
||||
RND="apm acpi atm lm_sensors "
|
||||
AUDIO="flac ogg twolame vorbis acc pulseaudio bluetooth equaliser"
|
||||
RND="apm acpi atm lm_sensors usb"
|
||||
NETWORK="sockets socks5 abyss"
|
||||
TEMPVARS="-colord savedconfig -graphicsmagick -qt3support -exif"
|
||||
DEV="nginx php fpm"
|
||||
CONSOLE="zsh-completion fish-completion vim-syntax"
|
||||
|
||||
USE="${GNOME} ${SYSTEMS} ${CRYPT} ${IMAGE} ${VID} ${AUDIO} ${RND} ${NETWORK} ${TEMPVARS} ${DEV} ${CONSOLE} ${VIRTUALISATION}"
|
||||
ABI_X86="64"
|
||||
USE="${GNOME} ${SYSTEMS} ${CRYPT} ${IMAGE} ${VID} ${AUDIO} ${RND} ${NETWORK} ${TEMPVARS} ${DEV} ${CONSOLE} ${VIRTUALISATION} ${ABI_X86}"
|
||||
VIDEO_CARDS="nvidia"
|
||||
LINGUAS="en_GB en"
|
||||
MAKEOPTS="-j7"
|
||||
|
||||
# Nice loads
|
||||
MAKEOPTS="-j4 -l2"
|
||||
PORTAGE_NICENESS=15
|
||||
PORTAGE_IONICE_COMMAND="ionice -c3 -p \${PID}"
|
||||
|
||||
#GRUB_PLATFORMS="efi-64"
|
||||
|
||||
EMERGE_DEFAULT_OPTS="--quiet-build"
|
||||
|
||||
# We dont want a testing environment
|
||||
#ACCEPT_KEYWORDS="~amd64"
|
||||
|
|
|
@ -5,18 +5,21 @@ bind-key C-a send-prefix
|
|||
|
||||
# Default global options.
|
||||
set-option -g bell-action none
|
||||
#set-option -g default-terminal "tmux-256color"
|
||||
set-option -g default-terminal "rxvt-unicode-256color"
|
||||
set-option -g status-bg green
|
||||
set-option -g status-keys vi
|
||||
set-option -g status-right-length 60
|
||||
set-option -g aggressive-resize on # for attaching like screen
|
||||
|
||||
#bind -n End send-key C-e
|
||||
#bind -n Home send-key C-a
|
||||
bind '"\e[7~" send-key "\eOH"'
|
||||
bind '"\e[8~" send-key "\eOF"'
|
||||
# Scrolling + Copying using Mouse
|
||||
#set -g mode-mouse on
|
||||
|
||||
# Default global window options
|
||||
set-window-option -g mode-keys vi
|
||||
set-window-option -g utf8 on
|
||||
#set-window-option -g utf8 on
|
||||
|
||||
# Keys to switch session.
|
||||
bind-key q switchc -t0
|
||||
|
|
|
@ -85,6 +85,7 @@ Plug 'tpope/vim-fugitive' " Git Branches Extension for airline
|
|||
Plug 'tpope/vim-surround' " Surround your visually selected word with ''
|
||||
Plug 'jiangmiao/auto-pairs' " multiple () and ''
|
||||
Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --all' }
|
||||
Plug 'majutsushi/tagbar'
|
||||
" Markdown Test
|
||||
"Plug 'godlygeek/tabular' " Needed for markdown
|
||||
"Plug 'plasticboy/vim-markdown' " Why Not Markdown?
|
||||
|
|
BIN
wallpaper.jpg
BIN
wallpaper.jpg
Binary file not shown.
Before Width: | Height: | Size: 1.1 MiB |
Binary file not shown.
After Width: | Height: | Size: 5.6 MiB |
Loading…
Reference in New Issue