minor tweaks to configuration
since the gtk update it is safe to re-enable MOZ_ENABLE_WAYLAND in startw, modified vimrc and added some plugins to micro
This commit is contained in:
parent
c6e7a4b300
commit
8a186fd7fd
1
.gitignore
vendored
1
.gitignore
vendored
@ -4,3 +4,4 @@ err-*
|
|||||||
conf/home/vim/plugged/**
|
conf/home/vim/plugged/**
|
||||||
conf/home/vim/.netrwhist
|
conf/home/vim/.netrwhist
|
||||||
conf/config/micro/buffers/**
|
conf/config/micro/buffers/**
|
||||||
|
conf/config/micro/plug/**
|
||||||
|
Binary file not shown.
@ -15,8 +15,15 @@
|
|||||||
"eofnewline": true,
|
"eofnewline": true,
|
||||||
"fastdirty": false,
|
"fastdirty": false,
|
||||||
"fileformat": "unix",
|
"fileformat": "unix",
|
||||||
|
"filemanager": true,
|
||||||
|
"filemanager.compressparent": true,
|
||||||
|
"filemanager.foldersfirst": true,
|
||||||
|
"filemanager.openonstart": false,
|
||||||
|
"filemanager.showdotfiles": true,
|
||||||
|
"filemanager.showignored": true,
|
||||||
"filetype": "unknown",
|
"filetype": "unknown",
|
||||||
"ftoptions": true,
|
"ftoptions": true,
|
||||||
|
"fzf": true,
|
||||||
"ignorecase": false,
|
"ignorecase": false,
|
||||||
"indentchar": " ",
|
"indentchar": " ",
|
||||||
"infobar": true,
|
"infobar": true,
|
||||||
|
@ -1,12 +0,0 @@
|
|||||||
let g:netrw_dirhistmax =10
|
|
||||||
let g:netrw_dirhistcnt =8
|
|
||||||
let g:netrw_dirhist_8='/home/ale/vimwiki/distro/patches'
|
|
||||||
let g:netrw_dirhist_7='/home/ale/vimwiki/distro'
|
|
||||||
let g:netrw_dirhist_6='/home/ale/vimwiki'
|
|
||||||
let g:netrw_dirhist_5='/home/ale'
|
|
||||||
let g:netrw_dirhist_4='/home/ale/vimwiki/distro/defaults'
|
|
||||||
let g:netrw_dirhist_3='/home/ale/Documents/projects/ste/src'
|
|
||||||
let g:netrw_dirhist_2='/home/ale'
|
|
||||||
let g:netrw_dirhist_1='/home/ale/Documents/projects/macrod'
|
|
||||||
let g:netrw_dirhist_0='/home/ale/Documents/projects/macrod/.git'
|
|
||||||
let g:netrw_dirhist_9='/home/ale/sw/conf/home/vim/plugged/vimwiki/doc'
|
|
@ -17,7 +17,11 @@ Plug 'tpope/vim-surround'
|
|||||||
Plug 'tpope/vim-fugitive'
|
Plug 'tpope/vim-fugitive'
|
||||||
Plug 'terryma/vim-multiple-cursors'
|
Plug 'terryma/vim-multiple-cursors'
|
||||||
Plug 'ap/vim-css-color'
|
Plug 'ap/vim-css-color'
|
||||||
Plug 'vimwiki/vimwiki'
|
" Plug 'vimwiki/vimwiki'
|
||||||
|
" Plug 'lervag/wiki.vim'
|
||||||
|
" Plug 'lervag/wiki-ft.vim'
|
||||||
|
Plug 'godlygeek/tabular'
|
||||||
|
Plug 'plasticboy/vim-markdown'
|
||||||
|
|
||||||
" List ends here. Plugins become visible to Vim after this call.
|
" List ends here. Plugins become visible to Vim after this call.
|
||||||
call plug#end()
|
call plug#end()
|
||||||
@ -26,14 +30,18 @@ call plug#end()
|
|||||||
set number
|
set number
|
||||||
set tabstop=4
|
set tabstop=4
|
||||||
set smartcase
|
set smartcase
|
||||||
|
colorscheme darkblue
|
||||||
|
|
||||||
|
" Use mouse
|
||||||
|
set mouse=a
|
||||||
|
set ttymouse=sgr
|
||||||
|
|
||||||
" Syntax and some plugins
|
" Syntax and some plugins
|
||||||
:filetype plugin on
|
:filetype plugin on
|
||||||
:syntax on
|
:syntax on
|
||||||
|
|
||||||
" Use mouse
|
" Set the viki root directory
|
||||||
set mouse=a
|
" let g:wiki_root = '~/vimwiki'
|
||||||
set ttymouse=sgr
|
|
||||||
|
|
||||||
" lightline is installed so this is not necessary
|
" lightline is installed so this is not necessary
|
||||||
set noshowmode
|
set noshowmode
|
||||||
@ -42,10 +50,3 @@ if !has('gui_running')
|
|||||||
set t_Co=256
|
set t_Co=256
|
||||||
endif
|
endif
|
||||||
|
|
||||||
" NERDTree
|
|
||||||
" map <C-t> :NERDTreeToggle<CR>
|
|
||||||
|
|
||||||
" Start nerdtree when no file is specified
|
|
||||||
" autocmd StdinReadPre * let s:std_in=1
|
|
||||||
" autocmd VimEnter * if argc() == 0 && !exists("s:std_in") | NERDTree | endif
|
|
||||||
" autocmd VimEnter * if argc() == 1 && isdirectory(argv()[0]) && !exists("s:std_in") | exe 'NERDTree' argv()[0] | wincmd p | ene | exe 'cd '.argv()[0] | endif
|
|
||||||
|
2
startw
2
startw
@ -67,7 +67,7 @@ done
|
|||||||
# Enable wayland native support
|
# Enable wayland native support
|
||||||
export _JAVA_AWT_WM_NONREPARENTING=1
|
export _JAVA_AWT_WM_NONREPARENTING=1
|
||||||
# Breaks gtk dialog box as of 10-04-2020
|
# Breaks gtk dialog box as of 10-04-2020
|
||||||
# export MOZ_ENABLE_WAYLAND=1
|
export MOZ_ENABLE_WAYLAND=1
|
||||||
export MOZ_WEBRENDER=1
|
export MOZ_WEBRENDER=1
|
||||||
export SDL_VIDEODRIVER=wayland
|
export SDL_VIDEODRIVER=wayland
|
||||||
export QT_QPA_PLATFORM=wayland-egl
|
export QT_QPA_PLATFORM=wayland-egl
|
||||||
|
Loading…
Reference in New Issue
Block a user