init.vim
This commit is contained in:
parent
f7af399741
commit
f607e79660
233
init_English.vim
233
init_English.vim
@ -1,233 +0,0 @@
|
|||||||
set number " displays line numbers
|
|
||||||
set wrap " breaks the code on the line
|
|
||||||
set cursorline " highlights the line with the cursor
|
|
||||||
set noshowmode
|
|
||||||
set title " displays the name and path of the file
|
|
||||||
set clipboard=unnamedplus " allow copying and pasting outside Neovim
|
|
||||||
set signcolumn=number
|
|
||||||
|
|
||||||
call plug#begin(has('nvim') ? stdpath('data') . '/plugged' : '~/.vim/plugged')
|
|
||||||
|
|
||||||
"Prettier + setup
|
|
||||||
" post install (yarn install | npm install) then load plugin only for editing supported files
|
|
||||||
Plug 'prettier/vim-prettier', {
|
|
||||||
\ 'do': 'yarn install --frozen-lockfile --production',
|
|
||||||
\ 'for': ['javascript', 'typescript', 'css', 'less', 'scss', 'json', 'graphql', 'markdown', 'vue', 'svelte', 'yaml', 'html', 'php'] }
|
|
||||||
|
|
||||||
" Adding a keyboard shortcut to confirm the help in the code with the TAB key
|
|
||||||
imap <silent><expr> <TAB> coc#pum#visible() ? coc#pum#confirm() : "\<TAB>"
|
|
||||||
|
|
||||||
Plug 'othree/html5.vim' " Support HTML5
|
|
||||||
|
|
||||||
Plug 'shellRaining/hlchunk.nvim' " Link lines in the code (lua)
|
|
||||||
|
|
||||||
" Plug 'Exafunction/codeium.vim', { 'branch': 'main' } " Free AI codium
|
|
||||||
|
|
||||||
Plug 'm4xshen/autoclose.nvim' " AutocloseTag (lua)
|
|
||||||
|
|
||||||
Plug 'https://github.com/scrooloose/nerdtree' " NERDTree lateral tree panel
|
|
||||||
|
|
||||||
Plug 'neoclide/coc.nvim', {'branch': 'release'} "Coc packages systems
|
|
||||||
|
|
||||||
Plug 'mhinz/vim-startify' " Alternativní start screen
|
|
||||||
|
|
||||||
Plug 'preservim/nerdcommenter' " NERD Commenter - comments code
|
|
||||||
|
|
||||||
Plug 'wakatime/vim-wakatime' " Wakatime
|
|
||||||
|
|
||||||
Plug 'tpope/vim-fugitive' " Git - vim fugitive
|
|
||||||
|
|
||||||
Plug 'lilydjwg/colorizer' " View color css
|
|
||||||
|
|
||||||
Plug 'Pocco81/auto-save.nvim' " Autosave
|
|
||||||
|
|
||||||
Plug 'pangloss/vim-javascript'
|
|
||||||
|
|
||||||
|
|
||||||
" Theme
|
|
||||||
Plug 'dracula/vim', { 'as': 'dracula' }
|
|
||||||
|
|
||||||
Plug 'Tsuzat/NeoSolarized.nvim', { 'branch': 'master' }
|
|
||||||
|
|
||||||
Plug 'bluz71/vim-moonfly-colors', { 'as': 'moonfly' }
|
|
||||||
|
|
||||||
Plug 'ghifarit53/tokyonight-vim'
|
|
||||||
|
|
||||||
Plug 'morhetz/gruvbox'
|
|
||||||
|
|
||||||
Plug 'joshdick/onedark.vim'
|
|
||||||
|
|
||||||
Plug 'sainnhe/sonokai'
|
|
||||||
|
|
||||||
Plug 'sainnhe/edge'
|
|
||||||
|
|
||||||
Plug 'vim-airline/vim-airline'
|
|
||||||
|
|
||||||
Plug 'projekt0n/github-nvim-theme'
|
|
||||||
|
|
||||||
Plug 'bluz71/vim-nightfly-colors', { 'as': 'nightfly' }
|
|
||||||
|
|
||||||
Plug 'xero/miasma.nvim'
|
|
||||||
|
|
||||||
Plug 'sts10/vim-pink-moon'
|
|
||||||
|
|
||||||
Plug 'gilgigilgil/anderson.vim'
|
|
||||||
|
|
||||||
Plug 'jacoborus/tender.vim'
|
|
||||||
|
|
||||||
Plug 'nordtheme/vim'
|
|
||||||
|
|
||||||
" CMP setup
|
|
||||||
|
|
||||||
" LSP
|
|
||||||
Plug 'neovim/nvim-lspconfig'
|
|
||||||
|
|
||||||
" Autocompletion
|
|
||||||
Plug 'hrsh7th/nvim-cmp'
|
|
||||||
Plug 'hrsh7th/cmp-nvim-lsp'
|
|
||||||
Plug 'hrsh7th/cmp-buffer'
|
|
||||||
Plug 'hrsh7th/cmp-path'
|
|
||||||
Plug 'hrsh7th/cmp-cmdline'
|
|
||||||
Plug 'hrsh7th/cmp-vsnip'
|
|
||||||
Plug 'hrsh7th/vim-vsnip'
|
|
||||||
|
|
||||||
" LSP Signature
|
|
||||||
Plug 'ray-x/lsp_signature.nvim'
|
|
||||||
|
|
||||||
" Lightbulb
|
|
||||||
Plug 'kosayoda/nvim-lightbulb'
|
|
||||||
|
|
||||||
call plug#end()
|
|
||||||
|
|
||||||
|
|
||||||
" Autostart NERDTree
|
|
||||||
" autocmd VimEnter * call NERDTreeFocus() " Autostart NERDTreeFocus
|
|
||||||
|
|
||||||
" Comments NERD Commenter key map Ctrl + k + l
|
|
||||||
let mapleader=","
|
|
||||||
nmap <C-k> <plug>NERDCommenterToggle
|
|
||||||
vmap <C-l> <plug>NERDCommenterToggle<CR>
|
|
||||||
|
|
||||||
" Atomaticstart theme
|
|
||||||
colorscheme dracula
|
|
||||||
autocmd VimEnter * colorscheme dracula
|
|
||||||
|
|
||||||
" Autosave
|
|
||||||
let g:auto_save_enabled = 1
|
|
||||||
let g:auto_save_delay = 3000
|
|
||||||
let g:auto_save_events = ['InsertLeave', 'TextChanged']
|
|
||||||
|
|
||||||
" keys pretier
|
|
||||||
vmap <leader>f <Plug>(coc-format-selected)
|
|
||||||
nmap <leader>f <Plug>(coc-format-selected)
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
lua <<EOF
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
--AutocloseTag setup
|
|
||||||
require("autoclose").setup()
|
|
||||||
|
|
||||||
--Line
|
|
||||||
require('hlchunk').setup({
|
|
||||||
indent = {
|
|
||||||
chars = {
|
|
||||||
"│",
|
|
||||||
},
|
|
||||||
style = {
|
|
||||||
"#FF0000",
|
|
||||||
"#FF7F00",
|
|
||||||
"#FFFF00",
|
|
||||||
"#00FF00",
|
|
||||||
"#00FFFF",
|
|
||||||
"#0000FF",
|
|
||||||
"#8B00FF",
|
|
||||||
},
|
|
||||||
}
|
|
||||||
|
|
||||||
})
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
EOF
|
|
||||||
|
|
||||||
|
|
||||||
lua << EOF
|
|
||||||
-- LSP setup
|
|
||||||
|
|
||||||
local nvim_lsp = require('lspconfig')
|
|
||||||
|
|
||||||
-- Enable some language servers with the additional completion capabilities offered by nvim-cmp
|
|
||||||
local servers = { 'pyright', 'tsserver', 'clangd', 'sumneko_lua' }
|
|
||||||
for _, lsp in ipairs(servers) do
|
|
||||||
nvim_lsp[lsp].setup {
|
|
||||||
capabilities = require('cmp_nvim_lsp').update_capabilities(vim.lsp.protocol.make_client_capabilities())
|
|
||||||
}
|
|
||||||
end
|
|
||||||
EOF
|
|
||||||
|
|
||||||
lua << EOF
|
|
||||||
|
|
||||||
-- nvim-cmp setup
|
|
||||||
local cmp = require 'cmp'
|
|
||||||
|
|
||||||
cmp.setup {
|
|
||||||
snippet = {
|
|
||||||
expand = function(args)
|
|
||||||
vim.fn["vsnip#anonymous"](args.body)
|
|
||||||
end,
|
|
||||||
},
|
|
||||||
mapping = {
|
|
||||||
['<C-d>'] = cmp.mapping.scroll_docs(-4),
|
|
||||||
['<C-f>'] = cmp.mapping.scroll_docs(4),
|
|
||||||
['<C-Space>'] = cmp.mapping.complete(),
|
|
||||||
['<C-e>'] = cmp.mapping.close(),
|
|
||||||
['<CR>'] = cmp.mapping.confirm({
|
|
||||||
behavior = cmp.ConfirmBehavior.Replace,
|
|
||||||
select = true,
|
|
||||||
}),
|
|
||||||
},
|
|
||||||
sources = {
|
|
||||||
{ name = 'nvim_lsp' },
|
|
||||||
{ name = 'vsnip' },
|
|
||||||
{ name = 'buffer' },
|
|
||||||
{ name = 'path' },
|
|
||||||
},
|
|
||||||
}
|
|
||||||
|
|
||||||
-- Use buffer source for `/`
|
|
||||||
cmp.setup.cmdline('/', {
|
|
||||||
sources = {
|
|
||||||
{ name = 'buffer' }
|
|
||||||
}
|
|
||||||
})
|
|
||||||
|
|
||||||
-- Use cmdline & path source for ':'
|
|
||||||
cmp.setup.cmdline(':', {
|
|
||||||
sources = cmp.config.sources({
|
|
||||||
{ name = 'path' }
|
|
||||||
}, {
|
|
||||||
{ name = 'cmdline' }
|
|
||||||
})
|
|
||||||
})
|
|
||||||
EOF
|
|
||||||
|
|
||||||
lua << EOF
|
|
||||||
-- lsp_signature setup
|
|
||||||
require'lsp_signature'.setup({
|
|
||||||
bind = true, -- This is mandatory, otherwise border config won't get registered.
|
|
||||||
handler_opts = {
|
|
||||||
border = "rounded"
|
|
||||||
}
|
|
||||||
})
|
|
||||||
EOF
|
|
||||||
|
|
||||||
lua << EOF
|
|
||||||
-- nvim-lightbulb setup
|
|
||||||
require('nvim-lightbulb').setup({
|
|
||||||
autocmd = { enabled = true },
|
|
||||||
})
|
|
||||||
EOF
|
|
Loading…
Reference in New Issue
Block a user