new fonts and vue plugin typescript

This commit is contained in:
AntoXa PRO 2024-11-12 16:32:58 +03:00
parent 79c08c674e
commit f348f802b0
18 changed files with 43 additions and 16 deletions

View File

@ -0,0 +1 @@
ed4756ea-5162-4272-afa7-1c30d75f6d29

Binary file not shown.

View File

@ -0,0 +1 @@
e6d3e6d6-e220-4686-b831-978be36dd0e8

View File

@ -0,0 +1 @@
0d5b40f3-853c-46c4-b79e-384710c78a9a

View File

@ -0,0 +1 @@
e2f090de-0c78-450a-8a3e-05baf9474fa7

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1 @@
63853023-86c4-4e7b-8693-f0f8a4ee3ba0

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1 @@
f57b80b8-ad35-402f-a498-8a2cfb01f377

View File

@ -84,7 +84,7 @@ mason_lspconfig.setup_handlers {
plugins = {
{
name = '@vue/typescript-plugin',
location = '/home/antoxa/.nvm/versions/node/v20.17.0/lib/node_modules/@vue/typescript-plugin',
location = '/home/antoxa/.nvm/versions/node/v22.11.0/lib/node_modules/@vue/typescript-plugin',
languages = { 'javascript', 'typescript', 'vue' }
}
}

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.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"
local package_path_str = "/home/antoxa/.cache/nvim/packer_hererocks/2.1.1727870382/share/lua/5.1/?.lua;/home/antoxa/.cache/nvim/packer_hererocks/2.1.1727870382/share/lua/5.1/?/init.lua;/home/antoxa/.cache/nvim/packer_hererocks/2.1.1727870382/lib/luarocks/rocks-5.1/?.lua;/home/antoxa/.cache/nvim/packer_hererocks/2.1.1727870382/lib/luarocks/rocks-5.1/?/init.lua"
local install_cpath_pattern = "/home/antoxa/.cache/nvim/packer_hererocks/2.1.1727870382/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

@ -14,21 +14,42 @@ set number
set relativenumber
set cursorline
set colorcolumn=80
set nowrap
set list
set listchars=space,tab:‑→
" set listchars=space:·,tab:─→
" set listchars=space:·,tab:└→
" set listchars=space:◦,eol:$,tab:->,trail:~,extends:>,precedes:<
" Having longer updatetime (default is 4000 ms = 4s) leads to noticeable
" delays and poor user experience
set updatetime=300
" Always show the signcolumn, otherwise it would shift the text each time
" diagnostics appear/become resolved
set signcolumn=yes
" set list
set list listchars=trail,tab-
" Colors.
syntax on
colorscheme slate
" VUNDLE ======================================================================/
set nocompatible " be iMproved, required
filetype off " required
" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" alternatively, pass a path where Vundle should install plugins
"call vundle#begin('~/some/path/here')
" let Vundle manage Vundle, required
Plugin 'VundleVim/Vundle.vim'
" C/C++
Plugin 'xavierd/clang_complete'
" All of your Plugins must be added before the following line
call vundle#end() " required
filetype plugin indent on " required
" To ignore plugin indent changes, instead use:
"filetype plugin on
"
" Brief help
" :PluginList - lists configured plugins
" :PluginInstall - installs plugins; append `!` to update or just :PluginUpdate
" :PluginSearch foo - searches for foo; append `!` to refresh local cache
" :PluginClean - confirms removal of unused plugins; append `!` to auto-approve removal
"
" see :h vundle for more details or wiki for FAQ
" Put your non-Plugin stuff after this line