-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.vimrc
More file actions
54 lines (41 loc) · 1.13 KB
/
.vimrc
File metadata and controls
54 lines (41 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
" Pathogen defaults to control plugins for later
execute pathogen#infect()
syntax on
filetype plugin indent on
" General vim presets
set relativenumber
set number
set tabstop=2
set softtabstop=2
set shiftwidth=2
set expandtab
set autoindent
set background=dark
colorscheme palenight
" Controls Cursor shape depenedent on mode of editing
let g:TerminusInsertCursorShape=1
let g:TerminusReplaceCursorShape=2
set laststatus=2
set noshowmode
" Controls bottomw bar color scheme
let g:lightline = {
\ 'colorscheme': 'palenight',
\ }
" Control for nerd tree to be opened by CTRL-N
map <C-n> :NERDTreeToggle<CR>
let g:NERDTreeDirArrowExpandable = '+'
let g:NERDTreeDirArrowCollapsible = '-'
" Control for TagBar to be opened by F8
nmap <C-l> :TagbarToggle<CR>
" Vim-javascript controls
let g:javascript_plugin_jsdoc = 1
"Vim-JSX (REACT) controls
let g:jsx_ext_required = 1
" Attempting to stop tmux from using different coloring scheme upon launch
set background=dark
set t_Co=256
" Removing arrow keys from functionality (trying to break some habbits) "
noremap <Up> <NOP>
noremap <Down> <NOP>
noremap <Left> <NOP>
noremap <Right> <NOP>