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
master
Alessandro Mauri 4 years ago
parent c6e7a4b300
commit 8a186fd7fd
  1. 1
      .gitignore
  2. BIN
      conf/config/micro/buffers/history
  3. 7
      conf/config/micro/settings.json
  4. 12
      conf/home/vim/.netrwhist
  5. 23
      conf/home/vimrc
  6. 2
      startw

1
.gitignore vendored

@ -4,3 +4,4 @@ err-*
conf/home/vim/plugged/**
conf/home/vim/.netrwhist
conf/config/micro/buffers/**
conf/config/micro/plug/**

Binary file not shown.

@ -15,8 +15,15 @@
"eofnewline": true,
"fastdirty": false,
"fileformat": "unix",
"filemanager": true,
"filemanager.compressparent": true,
"filemanager.foldersfirst": true,
"filemanager.openonstart": false,
"filemanager.showdotfiles": true,
"filemanager.showignored": true,
"filetype": "unknown",
"ftoptions": true,
"fzf": true,
"ignorecase": false,
"indentchar": " ",
"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 'terryma/vim-multiple-cursors'
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.
call plug#end()
@ -26,14 +30,18 @@ call plug#end()
set number
set tabstop=4
set smartcase
colorscheme darkblue
" Use mouse
set mouse=a
set ttymouse=sgr
" Syntax and some plugins
:filetype plugin on
:syntax on
" Use mouse
set mouse=a
set ttymouse=sgr
" Set the viki root directory
" let g:wiki_root = '~/vimwiki'
" lightline is installed so this is not necessary
set noshowmode
@ -42,10 +50,3 @@ if !has('gui_running')
set t_Co=256
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

@ -67,7 +67,7 @@ done
# Enable wayland native support
export _JAVA_AWT_WM_NONREPARENTING=1
# Breaks gtk dialog box as of 10-04-2020
# export MOZ_ENABLE_WAYLAND=1
export MOZ_ENABLE_WAYLAND=1
export MOZ_WEBRENDER=1
export SDL_VIDEODRIVER=wayland
export QT_QPA_PLATFORM=wayland-egl

Loading…
Cancel
Save