Change some telescope settings, add plugins for gitcommit and java, change coc-settings somewhat

master
Alex Selimov 3 months ago
parent 4e011c8561
commit 504f3fe1f7

@ -2,14 +2,17 @@
"suggest.autoTrigger": "none", "suggest.autoTrigger": "none",
"suggest.timeout": 500, "suggest.timeout": 500,
"pyright.disableDocumentation":false, "pyright.disableDocumentation":false,
"pyright.inlayHints.variableTypes":false,
"pyright.inlayHints.parameterTypes":false,
"pyright.inlayHints.functionReturnTypes":false,
"python.analysis.diagnosticSeverityOverrides":{ "python.analysis.diagnosticSeverityOverrides":{
"reportUnboundVariable":"none" "reportUnboundVariable":"none"
}, },
"hover.target": "preview", "hover.target": "preview",
"clangd.path": "/usr/bin/clangd", "clangd.path": "/usr/bin/clangd",
"python.formatting.provider": "black", "python.formatting.provider": "black",
"python.formatting.blackPath": "/home/aselimov/.local/bin/black",
"python.formatting.blackArgs": ["-l","100"], "python.formatting.blackArgs": ["-l","100"],
"coc.preferences.formatOnSaveFiletypes": ["python"] "coc.preferences.formatOnSaveFiletypes": ["python"],
"java.inlayHints.parameterNames.enabled": "none"
} }

@ -0,0 +1,2 @@
set colorcolumn=72
set tw=72

@ -0,0 +1,2 @@
set colorcolumn=100
set tw=100

@ -1,3 +1,4 @@
inoremap <Space><Space> <Esc>/<++><Enter>"_c4l
set spell spellfile="~/.config/nvim/spell/wordlist" set spell spellfile="~/.config/nvim/spell/wordlist"
let g:markdown_fenced_languages = ['html', 'python', 'bash=sh', 'fortran'] let g:markdown_fenced_languages = ['html', 'python', 'bash=sh', 'fortran']
"set conceallevel=2 "set conceallevel=2

@ -18,6 +18,10 @@ Plug 'nvim-telescope/telescope.nvim'
Plug 'neoclide/coc.nvim', {'branch': 'release'} Plug 'neoclide/coc.nvim', {'branch': 'release'}
Plug 'christoomey/vim-tmux-navigator' Plug 'christoomey/vim-tmux-navigator'
Plug 'GCBallesteros/vim-textobj-hydrogen' Plug 'GCBallesteros/vim-textobj-hydrogen'
Plug 'nvim-telescope/telescope-live-grep-args.nvim'
Plug 'folke/todo-comments.nvim'
" 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()
@ -106,8 +110,6 @@ filetype plugin on
let g:vim_markdown_folding_disabled = 1 let g:vim_markdown_folding_disabled = 1
"Keybindings "Keybindings
inoremap <Space><Space> <Esc>/<++><Enter>"_c4l
"map <C-f> :NERDTreeToggle<CR>
map <C-s> :set spell spellfile=~/.config/nvim/spell/wordlist.utf-8.spl map <C-s> :set spell spellfile=~/.config/nvim/spell/wordlist.utf-8.spl
"Set up some Asyncrun commands "Set up some Asyncrun commands
@ -170,8 +172,12 @@ lua require'colorizer'.setup()
"Set up telescope "Set up telescope
lua require('telescope_settings') lua require('telescope_settings')
nnoremap <silent> <C-g> <cmd>Telescope live_grep<cr> nnoremap <silent> <C-g> <cmd>lua require('telescope').extensions.live_grep_args.live_grep_args(require('telescope.themes').get_ivy({}))<cr>
nnoremap <silent> <C-f> <cmd> Telescope find_files shorten_path=true<cr> xnoremap <silent> <C-g> "zy:lua require('telescope').extensions.live_grep_args.live_grep_args(require('telescope.themes').get_ivy({}))<cr><c-r>z
nnoremap <silent> <C-f> <cmd> Telescope find_files shorten_path=true theme=ivy<cr>
nnoremap <silent> <A-g> <cmd> Telescope live_grep grep_open_files=true theme=ivy <cr>
vnoremap <silent> <A-g> "zy:Telescope live_grep grep_open_files=true theme=ivy <cr><c-r>z
" Change an option theme=ivy<cr>
" "
"Neomutt settings "Neomutt settings
autocmd BufNewFile,BufRead /tmp/neomutt* set noautoindent filetype=mail wm=0 tw=0 nonumber nolist autocmd BufNewFile,BufRead /tmp/neomutt* set noautoindent filetype=mail wm=0 tw=0 nonumber nolist
@ -189,3 +195,6 @@ nnoremap <C-H> <C-W><C-H>
"iron.nvim "iron.nvim
lua require('iron') lua require('iron')
set formatoptions-=o set formatoptions-=o
"todo-comments
lua require("todo-comments").setup()

@ -1,5 +1,5 @@
require('telescope').setup{ require('telescope').setup{
defaults = { defaults = {
path_display={"smart"} path_display={"smart"},
} }
} }

Loading…
Cancel
Save