Compare commits

...

2 Commits

Author SHA1 Message Date
9b7d1f72e0 mini fix 2024-09-27 08:07:16 +03:00
442b845bb4 etc 2024-09-27 07:29:47 +03:00
11 changed files with 31 additions and 10 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -12,12 +12,13 @@ if (not status_mason_lspconfig) then return end
-- Config servers.
local servers = {
-- 'tsserver',
'ts_ls',
'lua_ls',
'bashls',
'clangd',
'cmake',
'html',
'tsserver',
'volar',
'dockerls',
'jsonls',
@ -77,8 +78,8 @@ mason_lspconfig.setup_handlers {
lspconfig[server_name].setup(config)
end
-- TSSERVER.
if server_name == 'tsserver' then
-- TSSERVER / TS_LS.
if server_name == 'ts_ls' then
config.init_options = {
plugins = {
{

View File

@ -49,8 +49,8 @@ local function save_profiles(threshold)
end
time([[Luarocks path setup]], true)
local package_path_str = "/home/antoxa/.cache/nvim/packer_hererocks/2.1.1713773202/share/lua/5.1/?.lua;/home/antoxa/.cache/nvim/packer_hererocks/2.1.1713773202/share/lua/5.1/?/init.lua;/home/antoxa/.cache/nvim/packer_hererocks/2.1.1713773202/lib/luarocks/rocks-5.1/?.lua;/home/antoxa/.cache/nvim/packer_hererocks/2.1.1713773202/lib/luarocks/rocks-5.1/?/init.lua"
local install_cpath_pattern = "/home/antoxa/.cache/nvim/packer_hererocks/2.1.1713773202/lib/lua/5.1/?.so"
local package_path_str = "/home/antoxa/.cache/nvim/packer_hererocks/2.1.1725453128/share/lua/5.1/?.lua;/home/antoxa/.cache/nvim/packer_hererocks/2.1.1725453128/share/lua/5.1/?/init.lua;/home/antoxa/.cache/nvim/packer_hererocks/2.1.1725453128/lib/luarocks/rocks-5.1/?.lua;/home/antoxa/.cache/nvim/packer_hererocks/2.1.1725453128/lib/luarocks/rocks-5.1/?/init.lua"
local install_cpath_pattern = "/home/antoxa/.cache/nvim/packer_hererocks/2.1.1725453128/lib/lua/5.1/?.so"
if not string.find(package.path, package_path_str, 1, true) then
package.path = package.path .. ';' .. package_path_str
end

View File

@ -1,12 +1,12 @@
let g:netrw_dirhistmax =10
let g:netrw_dirhistcnt =2
let g:netrw_dirhistcnt =6
let g:netrw_dirhist_6='/home/antoxa/Documents/CheatSheets'
let g:netrw_dirhist_5='/home/antoxa/.password-store/my/ya.ru'
let g:netrw_dirhist_4='/home/antoxa/.password-store/my'
let g:netrw_dirhist_3='/home/antoxa/.password-store'
let g:netrw_dirhist_2='/home/antoxa/Projects/customers/svetofor/dompdd/directus/data/backups'
let g:netrw_dirhist_1='/home/antoxa/Projects/mydot/nvim/.config/nvim/lua/axp/plugins'
let g:netrw_dirhist_0='/home/antoxa/Projects/mydot/nvim/.config/nvim/lua/axp'
let g:netrw_dirhist_9='/home/antoxa/Projects/mydot/nvim/.config/nvim/lua'
let g:netrw_dirhist_8='/home/antoxa/Projects/mydot/nvim/.config/nvim'
let g:netrw_dirhist_7='/home/antoxa/Projects/mydot/nvim/.config/nvim/plugin'
let g:netrw_dirhist_6='/home/antoxa/Projects/mydot/nvim/.config/nvim'
let g:netrw_dirhist_5='/home/antoxa/Documents/CheatSheets'
let g:netrw_dirhist_4='/dev/shm/pass.ulVK378La7imh'
let g:netrw_dirhist_3='/home/antoxa/.ssh'

15
vim/1 Normal file
View File

@ -0,0 +1,15 @@
" Common.
set encoding=utf-8
set fileencoding=utf-8
set nobackup
set noswapfile
" Tabs.
set tabstop=2
set shiftwidth=2
" Lines.
set number
set relativenumber
set cursorline
set colorcolumn=80

View File

@ -1 +1,6 @@
source $HOME/.config/zsh/.zshrc
## [Completion]
## Completion scripts setup. Remove the following line to uninstall
[[ -f /home/antoxa/.dart-cli-completion/zsh-config.zsh ]] && . /home/antoxa/.dart-cli-completion/zsh-config.zsh || true
## [/Completion]