summaryrefslogtreecommitdiffstats
path: root/.config
diff options
context:
space:
mode:
authorYigit Sever2021-11-07 23:11:33 +0300
committerYigit Sever2021-11-07 23:11:33 +0300
commita2581b076712bb1997c3856019742df27d15cfac (patch)
tree30e5c4c84c8b8b6d093b045ae9d6033df3f3e25e /.config
parent81764d44f86917a38744f22a8c494be3589ae995 (diff)
downloaddotfiles-a2581b076712bb1997c3856019742df27d15cfac.tar.gz
dotfiles-a2581b076712bb1997c3856019742df27d15cfac.tar.bz2
dotfiles-a2581b076712bb1997c3856019742df27d15cfac.zip
nvim: remove abolish, small changes
diffstat (limited to '.config')
-rw-r--r--.config/nvim/.netrwhist12
-rw-r--r--.config/nvim/after/plugin/abolish.vim15
-rw-r--r--.config/nvim/lua/plugin_settings.lua13
-rw-r--r--.config/nvim/lua/plugins.lua3
-rw-r--r--.config/nvim/neovim.cat26
-rw-r--r--.config/nvim/plugin/packer_compiled.lua360
-rw-r--r--.config/nvim/spell/en.utf-8.add.splbin0 -> 868 bytes
-rw-r--r--.config/nvim/spell/tr.utf-8.splbin0 -> 3559208 bytes
-rw-r--r--.config/nvim/startup.log149
9 files changed, 540 insertions, 38 deletions
diff --git a/.config/nvim/.netrwhist b/.config/nvim/.netrwhist
new file mode 100644
index 0000000..2299047
--- /dev/null
+++ b/.config/nvim/.netrwhist
@@ -0,0 +1,12 @@
1let g:netrw_dirhistmax =10
2let g:netrw_dirhistcnt =8
3let g:netrw_dirhist_8='/home/yigit/.local/share/Steam/steamapps/common/dota 2 beta/game/dota'
4let g:netrw_dirhist_7='/home/yigit/desktop/courses/stu_courses/2020_S/ceng532/ahc/tests/AnonymousNetworks'
5let g:netrw_dirhist_6='/home/yigit/desktop/courses/stu_courses/2020_S/ceng532/ahc/.git'
6let g:netrw_dirhist_5='/home/yigit/.config/transmission'
7let g:netrw_dirhist_4='/home/yigit/.config/i3'
8let g:netrw_dirhist_3='/tmp/.ZmoA/ssldump'
9let g:netrw_dirhist_2='/home/yigit/.config/i3'
10let g:netrw_dirhist_1='/home/yigit/.screenlayout'
11let g:netrw_dirhist_0='/home/yigit/desktop/repo_landing/gradecoin-site/templates'
12let g:netrw_dirhist_9='/home/yigit/desktop/repo_landing/gradecoin-site/themes'
diff --git a/.config/nvim/after/plugin/abolish.vim b/.config/nvim/after/plugin/abolish.vim
deleted file mode 100644
index a295819..0000000
--- a/.config/nvim/after/plugin/abolish.vim
+++ /dev/null
@@ -1,15 +0,0 @@
1Abolish {despa,sepe}rat{e,es,ed,ing,ely,ion,ions,or} {despe,sepa}rat{}
2Abolish persistan{ce,t,tly} persisten{}
3Abolish despara{te,tely,tion} despera{}
4Abolish seperat{e,es,ed,ing,ely,ion,ions,or} separat{}
5Abolish teh the
6Abolish {,un}nec{ce,ces,e}sar{y,ily} {}nec{es}sar{}
7Abolish {,ir}releven{ce,cy,t,tly} {}relevan{}
8Abolish color colour
9
10iabbrev <silent> todaylongdate <C-R>=strftime("%a %b %d %T %Z %Y")<CR>
11iabbrev <silent> todaydatetime <C-R>=strftime("%F %T")<CR>
12iabbrev <silent> todaydate <C-R>=strftime("%F")<CR>
13iabbrev <silent> pwn English Princeton WordNet
14iabbrev <silent> omw Open Multilingual WordNet
15iabbrev <silent> BC blockchain
diff --git a/.config/nvim/lua/plugin_settings.lua b/.config/nvim/lua/plugin_settings.lua
index 4bc7081..bff9bcb 100644
--- a/.config/nvim/lua/plugin_settings.lua
+++ b/.config/nvim/lua/plugin_settings.lua
@@ -242,12 +242,12 @@ require('telescope').load_extension('fzf')
242-- }}} telescope -- 242-- }}} telescope --
243 243
244-- dashboard {{{ -- 244-- dashboard {{{ --
245g.dashboard_default_executive = 'telescope' 245g.dashboard_default_executive = 'telescope'
246g.dashboard_preview_command = 'cat' 246g.dashboard_preview_command = 'cat'
247g.dashboard_preview_pipeline = 'lolcat' 247g.dashboard_preview_file = '~/.config/nvim/neovim.cat'
248g.dashboard_preview_file = '~/.config/nvim/neovim.cat' 248g.dashboard_preview_file_height = 13
249g.dashboard_preview_file_height = 14 249g.dashboard_preview_file_width = 90
250g.dashboard_preview_file_width = 90 250g.dashboard_footer_icon = 'πŸ’ƒ '
251 251
252g.dashboard_custom_shortcut = { 252g.dashboard_custom_shortcut = {
253 last_session = '<leader> s l', 253 last_session = '<leader> s l',
@@ -304,7 +304,6 @@ cmp.setup({
304 { name = 'nvim_lsp' }, 304 { name = 'nvim_lsp' },
305 { name = 'ultisnips' }, 305 { name = 'ultisnips' },
306 { name = 'buffer' }, 306 { name = 'buffer' },
307 { name = "latex_symbols" },
308 } 307 }
309}) 308})
310 309
diff --git a/.config/nvim/lua/plugins.lua b/.config/nvim/lua/plugins.lua
index 266ab2c..6d982de 100644
--- a/.config/nvim/lua/plugins.lua
+++ b/.config/nvim/lua/plugins.lua
@@ -26,7 +26,6 @@ return require('packer').startup(function()
26 use 'hrsh7th/nvim-cmp' 26 use 'hrsh7th/nvim-cmp'
27 use 'hrsh7th/cmp-nvim-lsp' 27 use 'hrsh7th/cmp-nvim-lsp'
28 use 'hrsh7th/cmp-buffer' 28 use 'hrsh7th/cmp-buffer'
29 use 'kdheepak/cmp-latex-symbols'
30 use 'quangnguyen30192/cmp-nvim-ultisnips' 29 use 'quangnguyen30192/cmp-nvim-ultisnips'
31 30
32 -- find, filter, preview, pick 31 -- find, filter, preview, pick
@@ -136,8 +135,6 @@ return require('packer').startup(function()
136 } 135 }
137 -- increment dates, times & more 136 -- increment dates, times & more
138 use 'tpope/vim-speeddating' 137 use 'tpope/vim-speeddating'
139 -- search, substitute and abbreviate
140 use 'tpope/vim-abolish'
141 -- provides ga, show unicode stuff of char under cursor 138 -- provides ga, show unicode stuff of char under cursor
142 use 'tpope/vim-characterize' 139 use 'tpope/vim-characterize'
143 -- comment helper 140 -- comment helper
diff --git a/.config/nvim/neovim.cat b/.config/nvim/neovim.cat
index e82ff4a..fc33e6d 100644
--- a/.config/nvim/neovim.cat
+++ b/.config/nvim/neovim.cat
@@ -1,13 +1,13 @@
1β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β” 1β”Œ──────────────────────────────────────────────────────────────────────────────────┐
2β”‚ ___ ___ ___ ___ β”‚ 2β”‚      ___           ___           ___           ___                       ___     β”‚
3β”‚ /\ \ /\__\ /\ \ ___ /\ \ β”‚ 3β”‚     /\__\         /\  \         /\  \         /\__\          ___        /\__\    β”‚
4β”‚ \:\ \ /:/ _/_ /::\ \ /\ \ ___ |::\ \ β”‚ 4β”‚    /::|  |       /::\  \       /::\  \       /:/  /         /\  \      /::|  |   β”‚
5β”‚ \:\ \ /:/ /\__\ /:/\:\ \ \:\ \ /\__\ |:|:\ \ β”‚ 5β”‚   /:|:|  |      /:/\:\  \     /:/\:\  \     /:/  /          \:\  \    /:|:|  |   β”‚
6β”‚ _____\:\ \ /:/ /:/ _/_ /:/ \:\ \ \:\ \ /:/__/ __|:|\:\ \ β”‚ 6β”‚  /:/|:|  |__   /::\~\:\  \   /:/  \:\  \   /:/__/  ___      /::\__\  /:/|:|__|__ β”‚
7β”‚ /::::::::\__\ /:/_/:/ /\__\ /:/__/ \:\__\ ___ \:\__\ /::\ \ /::::|_\:\__\β”‚ 7β”‚ /:/ |:| /\__\ /:/\:\ \:\__\ /:/__/ \:\__\  |:|  | /\__\  __/:/\/__/ /:/ |::::\__\β”‚
8β”‚ \:\~~\~~\/__/ \:\/:/ /:/ / \:\ \ /:/ / /\ \ |:| | \/\:\ \__ \:\~~\ \/__/β”‚ 8β”‚ \/__|:|/:/  / \:\~\:\ \/__/ \:\  \ /:/  /  |:|  |/:/  / /\/:/  /    \/__/~~/:/  /β”‚
9β”‚ \:\ \ \::/_/:/ / \:\ /:/ / \:\ \|:| | ~~\:\/\__\ \:\ \ β”‚ 9β”‚     |:/:/  /   \:\ \:\__\    \:\  /:/  /   |:|__/:/  /  \::/__/           /:/  / β”‚
10β”‚ \:\ \ \:\/:/ / \:\/:/ / \:\__|:|__| \::/ / \:\ \ β”‚ 10β”‚     |::/  /     \:\ \/__/     \:\/:/  /     \::::/__/    \:\__\          /:/  /  β”‚
11β”‚ \:\__\ \::/ / \::/ / \::::/__/ /:/ / \:\__\ β”‚ 11β”‚     /:/  /       \:\__\        \::/  /       ~~~~         \/__/         /:/  /   β”‚
12β”‚ \/__/ \/__/ \/__/ ~~~~ \/__/ \/__/ β”‚ 12β”‚     \/__/         \/__/         \/__/                                   \/__/    β”‚
13β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜ 13β””──────────────────────────────────────────────────────────────────────────────────β”˜
diff --git a/.config/nvim/plugin/packer_compiled.lua b/.config/nvim/plugin/packer_compiled.lua
new file mode 100644
index 0000000..04db45e
--- /dev/null
+++ b/.config/nvim/plugin/packer_compiled.lua
@@ -0,0 +1,360 @@
1-- Automatically generated packer.nvim plugin loader code
2
3if vim.api.nvim_call_function('has', {'nvim-0.5'}) ~= 1 then
4 vim.api.nvim_command('echohl WarningMsg | echom "Invalid Neovim version for packer.nvim! | echohl None"')
5 return
6end
7
8vim.api.nvim_command('packadd packer.nvim')
9
10local no_errors, error_msg = pcall(function()
11
12 local time
13 local profile_info
14 local should_profile = false
15 if should_profile then
16 local hrtime = vim.loop.hrtime
17 profile_info = {}
18 time = function(chunk, start)
19 if start then
20 profile_info[chunk] = hrtime()
21 else
22 profile_info[chunk] = (hrtime() - profile_info[chunk]) / 1e6
23 end
24 end
25 else
26 time = function(chunk, start) end
27 end
28
29local function save_profiles(threshold)
30 local sorted_times = {}
31 for chunk_name, time_taken in pairs(profile_info) do
32 sorted_times[#sorted_times + 1] = {chunk_name, time_taken}
33 end
34 table.sort(sorted_times, function(a, b) return a[2] > b[2] end)
35 local results = {}
36 for i, elem in ipairs(sorted_times) do
37 if not threshold or threshold and elem[2] > threshold then
38 results[i] = elem[1] .. ' took ' .. elem[2] .. 'ms'
39 end
40 end
41
42 _G._packer = _G._packer or {}
43 _G._packer.profile_output = results
44end
45
46time([[Luarocks path setup]], true)
47local package_path_str = "/home/yigit/.cache/nvim/packer_hererocks/2.0.5/share/lua/5.1/?.lua;/home/yigit/.cache/nvim/packer_hererocks/2.0.5/share/lua/5.1/?/init.lua;/home/yigit/.cache/nvim/packer_hererocks/2.0.5/lib/luarocks/rocks-5.1/?.lua;/home/yigit/.cache/nvim/packer_hererocks/2.0.5/lib/luarocks/rocks-5.1/?/init.lua"
48local install_cpath_pattern = "/home/yigit/.cache/nvim/packer_hererocks/2.0.5/lib/lua/5.1/?.so"
49if not string.find(package.path, package_path_str, 1, true) then
50 package.path = package.path .. ';' .. package_path_str
51end
52
53if not string.find(package.cpath, install_cpath_pattern, 1, true) then
54 package.cpath = package.cpath .. ';' .. install_cpath_pattern
55end
56
57time([[Luarocks path setup]], false)
58time([[try_loadstring definition]], true)
59local function try_loadstring(s, component, name)
60 local success, result = pcall(loadstring(s))
61 if not success then
62 vim.schedule(function()
63 vim.api.nvim_notify('packer.nvim: Error running ' .. component .. ' for ' .. name .. ': ' .. result, vim.log.levels.ERROR, {})
64 end)
65 end
66 return result
67end
68
69time([[try_loadstring definition]], false)
70time([[Defining packer_plugins]], true)
71_G.packer_plugins = {
72 ["beacon.nvim"] = {
73 loaded = true,
74 path = "/home/yigit/.local/share/nvim/site/pack/packer/start/beacon.nvim"
75 },
76 ["cmp-buffer"] = {
77 loaded = true,
78 path = "/home/yigit/.local/share/nvim/site/pack/packer/start/cmp-buffer"
79 },
80 ["cmp-nvim-lsp"] = {
81 loaded = true,
82 path = "/home/yigit/.local/share/nvim/site/pack/packer/start/cmp-nvim-lsp"
83 },
84 ["cmp-nvim-ultisnips"] = {
85 loaded = true,
86 path = "/home/yigit/.local/share/nvim/site/pack/packer/start/cmp-nvim-ultisnips"
87 },
88 ["dashboard-nvim"] = {
89 loaded = true,
90 path = "/home/yigit/.local/share/nvim/site/pack/packer/start/dashboard-nvim"
91 },
92 ["filetype.nvim"] = {
93 loaded = true,
94 path = "/home/yigit/.local/share/nvim/site/pack/packer/start/filetype.nvim"
95 },
96 ["float-preview.nvim"] = {
97 loaded = true,
98 path = "/home/yigit/.local/share/nvim/site/pack/packer/start/float-preview.nvim"
99 },
100 ["goyo.vim"] = {
101 loaded = true,
102 path = "/home/yigit/.local/share/nvim/site/pack/packer/start/goyo.vim"
103 },
104 ["i3config.vim"] = {
105 loaded = true,
106 path = "/home/yigit/.local/share/nvim/site/pack/packer/start/i3config.vim"
107 },
108 ["indent-blankline.nvim"] = {
109 loaded = true,
110 path = "/home/yigit/.local/share/nvim/site/pack/packer/start/indent-blankline.nvim"
111 },
112 ["limelight.vim"] = {
113 loaded = true,
114 path = "/home/yigit/.local/share/nvim/site/pack/packer/start/limelight.vim"
115 },
116 ["lualine.nvim"] = {
117 loaded = true,
118 path = "/home/yigit/.local/share/nvim/site/pack/packer/start/lualine.nvim"
119 },
120 neovim = {
121 loaded = true,
122 path = "/home/yigit/.local/share/nvim/site/pack/packer/start/neovim"
123 },
124 ["nvim-autopairs"] = {
125 loaded = true,
126 path = "/home/yigit/.local/share/nvim/site/pack/packer/start/nvim-autopairs"
127 },
128 ["nvim-cmp"] = {
129 loaded = true,
130 path = "/home/yigit/.local/share/nvim/site/pack/packer/start/nvim-cmp"
131 },
132 ["nvim-colorizer.lua"] = {
133 loaded = true,
134 path = "/home/yigit/.local/share/nvim/site/pack/packer/start/nvim-colorizer.lua"
135 },
136 ["nvim-lspconfig"] = {
137 loaded = true,
138 path = "/home/yigit/.local/share/nvim/site/pack/packer/start/nvim-lspconfig"
139 },
140 ["nvim-tree.lua"] = {
141 loaded = true,
142 path = "/home/yigit/.local/share/nvim/site/pack/packer/start/nvim-tree.lua"
143 },
144 ["nvim-treesitter"] = {
145 loaded = true,
146 path = "/home/yigit/.local/share/nvim/site/pack/packer/start/nvim-treesitter"
147 },
148 ["nvim-web-devicons"] = {
149 loaded = true,
150 path = "/home/yigit/.local/share/nvim/site/pack/packer/start/nvim-web-devicons"
151 },
152 ["packer.nvim"] = {
153 loaded = true,
154 path = "/home/yigit/.local/share/nvim/site/pack/packer/start/packer.nvim"
155 },
156 ["plenary.nvim"] = {
157 loaded = true,
158 path = "/home/yigit/.local/share/nvim/site/pack/packer/start/plenary.nvim"
159 },
160 tabular = {
161 loaded = true,
162 path = "/home/yigit/.local/share/nvim/site/pack/packer/start/tabular"
163 },
164 ["targets.vim"] = {
165 loaded = true,
166 path = "/home/yigit/.local/share/nvim/site/pack/packer/start/targets.vim"
167 },
168 ["telescope-fzf-native.nvim"] = {
169 loaded = true,
170 path = "/home/yigit/.local/share/nvim/site/pack/packer/start/telescope-fzf-native.nvim"
171 },
172 ["telescope.nvim"] = {
173 loaded = true,
174 path = "/home/yigit/.local/share/nvim/site/pack/packer/start/telescope.nvim"
175 },
176 ["traces.vim"] = {
177 loaded = true,
178 path = "/home/yigit/.local/share/nvim/site/pack/packer/start/traces.vim"
179 },
180 ["turkish-deasciifier.vim"] = {
181 loaded = true,
182 path = "/home/yigit/.local/share/nvim/site/pack/packer/start/turkish-deasciifier.vim"
183 },
184 ultisnips = {
185 loaded = true,
186 path = "/home/yigit/.local/share/nvim/site/pack/packer/start/ultisnips"
187 },
188 undotree = {
189 commands = { "UndotreeToggle" },
190 config = { "vim.g.undotree_SetFocusWhenToggle = 1" },
191 loaded = false,
192 needs_bufread = false,
193 only_cond = false,
194 path = "/home/yigit/.local/share/nvim/site/pack/packer/opt/undotree"
195 },
196 ["vim-characterize"] = {
197 loaded = true,
198 path = "/home/yigit/.local/share/nvim/site/pack/packer/start/vim-characterize"
199 },
200 ["vim-commentary"] = {
201 loaded = true,
202 path = "/home/yigit/.local/share/nvim/site/pack/packer/start/vim-commentary"
203 },
204 ["vim-cutlass"] = {
205 loaded = true,
206 path = "/home/yigit/.local/share/nvim/site/pack/packer/start/vim-cutlass"
207 },
208 ["vim-dispatch"] = {
209 commands = { "Dispatch", "Make", "Focus", "Start" },
210 loaded = false,
211 needs_bufread = false,
212 only_cond = false,
213 path = "/home/yigit/.local/share/nvim/site/pack/packer/opt/vim-dispatch"
214 },
215 ["vim-fugitive"] = {
216 commands = { "Git", "Gstatus", "Gblame", "Gpush", "Gpull" },
217 loaded = false,
218 needs_bufread = true,
219 only_cond = false,
220 path = "/home/yigit/.local/share/nvim/site/pack/packer/opt/vim-fugitive"
221 },
222 ["vim-gitgutter"] = {
223 loaded = true,
224 path = "/home/yigit/.local/share/nvim/site/pack/packer/start/vim-gitgutter"
225 },
226 ["vim-gutentags"] = {
227 loaded = true,
228 path = "/home/yigit/.local/share/nvim/site/pack/packer/start/vim-gutentags"
229 },
230 ["vim-indent-object"] = {
231 loaded = true,
232 path = "/home/yigit/.local/share/nvim/site/pack/packer/start/vim-indent-object"
233 },
234 ["vim-interestingwords"] = {
235 loaded = true,
236 path = "/home/yigit/.local/share/nvim/site/pack/packer/start/vim-interestingwords"
237 },
238 ["vim-kitty"] = {
239 loaded = true,
240 path = "/home/yigit/.local/share/nvim/site/pack/packer/start/vim-kitty"
241 },
242 ["vim-lastplace"] = {
243 loaded = true,
244 path = "/home/yigit/.local/share/nvim/site/pack/packer/start/vim-lastplace"
245 },
246 ["vim-ledger"] = {
247 loaded = true,
248 path = "/home/yigit/.local/share/nvim/site/pack/packer/start/vim-ledger"
249 },
250 ["vim-move"] = {
251 loaded = true,
252 path = "/home/yigit/.local/share/nvim/site/pack/packer/start/vim-move"
253 },
254 ["vim-peekaboo"] = {
255 loaded = true,
256 path = "/home/yigit/.local/share/nvim/site/pack/packer/start/vim-peekaboo"
257 },
258 ["vim-repeat"] = {
259 loaded = true,
260 path = "/home/yigit/.local/share/nvim/site/pack/packer/start/vim-repeat"
261 },
262 ["vim-sandwich"] = {
263 loaded = true,
264 path = "/home/yigit/.local/share/nvim/site/pack/packer/start/vim-sandwich"
265 },
266 ["vim-slime"] = {
267 loaded = true,
268 path = "/home/yigit/.local/share/nvim/site/pack/packer/start/vim-slime"
269 },
270 ["vim-sneak"] = {
271 loaded = true,
272 path = "/home/yigit/.local/share/nvim/site/pack/packer/start/vim-sneak"
273 },
274 ["vim-snippets"] = {
275 loaded = true,
276 path = "/home/yigit/.local/share/nvim/site/pack/packer/start/vim-snippets"
277 },
278 ["vim-speeddating"] = {
279 loaded = true,
280 path = "/home/yigit/.local/share/nvim/site/pack/packer/start/vim-speeddating"
281 },
282 ["vim-subversive"] = {
283 loaded = true,
284 path = "/home/yigit/.local/share/nvim/site/pack/packer/start/vim-subversive"
285 },
286 ["vim-swap"] = {
287 loaded = true,
288 path = "/home/yigit/.local/share/nvim/site/pack/packer/start/vim-swap"
289 },
290 ["vim-test"] = {
291 loaded = true,
292 path = "/home/yigit/.local/share/nvim/site/pack/packer/start/vim-test"
293 },
294 ["vim-unimpaired"] = {
295 loaded = true,
296 path = "/home/yigit/.local/share/nvim/site/pack/packer/start/vim-unimpaired"
297 },
298 ["vim-yoink"] = {
299 loaded = true,
300 path = "/home/yigit/.local/share/nvim/site/pack/packer/start/vim-yoink"
301 },
302 vimtex = {
303 loaded = false,
304 needs_bufread = true,
305 only_cond = false,
306 path = "/home/yigit/.local/share/nvim/site/pack/packer/opt/vimtex"
307 },
308 vimwiki = {
309 loaded = true,
310 path = "/home/yigit/.local/share/nvim/site/pack/packer/start/vimwiki"
311 },
312 ["vista.vim"] = {
313 loaded = true,
314 path = "/home/yigit/.local/share/nvim/site/pack/packer/start/vista.vim"
315 }
316}
317
318time([[Defining packer_plugins]], false)
319
320-- Command lazy-loads
321time([[Defining lazy-load commands]], true)
322pcall(vim.cmd, [[command -nargs=* -range -bang -complete=file Make lua require("packer.load")({'vim-dispatch'}, { cmd = "Make", l1 = <line1>, l2 = <line2>, bang = <q-bang>, args = <q-args>, mods = "<mods>" }, _G.packer_plugins)]])
323pcall(vim.cmd, [[command -nargs=* -range -bang -complete=file Gblame lua require("packer.load")({'vim-fugitive'}, { cmd = "Gblame", l1 = <line1>, l2 = <line2>, bang = <q-bang>, args = <q-args>, mods = "<mods>" }, _G.packer_plugins)]])
324pcall(vim.cmd, [[command -nargs=* -range -bang -complete=file Gstatus lua require("packer.load")({'vim-fugitive'}, { cmd = "Gstatus", l1 = <line1>, l2 = <line2>, bang = <q-bang>, args = <q-args>, mods = "<mods>" }, _G.packer_plugins)]])
325pcall(vim.cmd, [[command -nargs=* -range -bang -complete=file UndotreeToggle lua require("packer.load")({'undotree'}, { cmd = "UndotreeToggle", l1 = <line1>, l2 = <line2>, bang = <q-bang>, args = <q-args>, mods = "<mods>" }, _G.packer_plugins)]])
326pcall(vim.cmd, [[command -nargs=* -range -bang -complete=file Focus lua require("packer.load")({'vim-dispatch'}, { cmd = "Focus", l1 = <line1>, l2 = <line2>, bang = <q-bang>, args = <q-args>, mods = "<mods>" }, _G.packer_plugins)]])
327pcall(vim.cmd, [[command -nargs=* -range -bang -complete=file Gpull lua require("packer.load")({'vim-fugitive'}, { cmd = "Gpull", l1 = <line1>, l2 = <line2>, bang = <q-bang>, args = <q-args>, mods = "<mods>" }, _G.packer_plugins)]])
328pcall(vim.cmd, [[command -nargs=* -range -bang -complete=file Gpush lua require("packer.load")({'vim-fugitive'}, { cmd = "Gpush", l1 = <line1>, l2 = <line2>, bang = <q-bang>, args = <q-args>, mods = "<mods>" }, _G.packer_plugins)]])
329pcall(vim.cmd, [[command -nargs=* -range -bang -complete=file Git lua require("packer.load")({'vim-fugitive'}, { cmd = "Git", l1 = <line1>, l2 = <line2>, bang = <q-bang>, args = <q-args>, mods = "<mods>" }, _G.packer_plugins)]])
330pcall(vim.cmd, [[command -nargs=* -range -bang -complete=file Dispatch lua require("packer.load")({'vim-dispatch'}, { cmd = "Dispatch", l1 = <line1>, l2 = <line2>, bang = <q-bang>, args = <q-args>, mods = "<mods>" }, _G.packer_plugins)]])
331pcall(vim.cmd, [[command -nargs=* -range -bang -complete=file Start lua require("packer.load")({'vim-dispatch'}, { cmd = "Start", l1 = <line1>, l2 = <line2>, bang = <q-bang>, args = <q-args>, mods = "<mods>" }, _G.packer_plugins)]])
332time([[Defining lazy-load commands]], false)
333
334vim.cmd [[augroup packer_load_aucmds]]
335vim.cmd [[au!]]
336 -- Filetype lazy-loads
337time([[Defining lazy-load filetype autocommands]], true)
338vim.cmd [[au FileType plaintext ++once lua require("packer.load")({'vimtex'}, { ft = "plaintext" }, _G.packer_plugins)]]
339vim.cmd [[au FileType latex ++once lua require("packer.load")({'vimtex'}, { ft = "latex" }, _G.packer_plugins)]]
340vim.cmd [[au FileType tex ++once lua require("packer.load")({'vimtex'}, { ft = "tex" }, _G.packer_plugins)]]
341time([[Defining lazy-load filetype autocommands]], false)
342vim.cmd("augroup END")
343vim.cmd [[augroup filetypedetect]]
344time([[Sourcing ftdetect script at: /home/yigit/.local/share/nvim/site/pack/packer/opt/vimtex/ftdetect/cls.vim]], true)
345vim.cmd [[source /home/yigit/.local/share/nvim/site/pack/packer/opt/vimtex/ftdetect/cls.vim]]
346time([[Sourcing ftdetect script at: /home/yigit/.local/share/nvim/site/pack/packer/opt/vimtex/ftdetect/cls.vim]], false)
347time([[Sourcing ftdetect script at: /home/yigit/.local/share/nvim/site/pack/packer/opt/vimtex/ftdetect/tex.vim]], true)
348vim.cmd [[source /home/yigit/.local/share/nvim/site/pack/packer/opt/vimtex/ftdetect/tex.vim]]
349time([[Sourcing ftdetect script at: /home/yigit/.local/share/nvim/site/pack/packer/opt/vimtex/ftdetect/tex.vim]], false)
350time([[Sourcing ftdetect script at: /home/yigit/.local/share/nvim/site/pack/packer/opt/vimtex/ftdetect/tikz.vim]], true)
351vim.cmd [[source /home/yigit/.local/share/nvim/site/pack/packer/opt/vimtex/ftdetect/tikz.vim]]
352time([[Sourcing ftdetect script at: /home/yigit/.local/share/nvim/site/pack/packer/opt/vimtex/ftdetect/tikz.vim]], false)
353vim.cmd("augroup END")
354if should_profile then save_profiles() end
355
356end)
357
358if not no_errors then
359 vim.api.nvim_command('echohl ErrorMsg | echom "Error in packer_compiled: '..error_msg..'" | echom "Please check your config for correctness" | echohl None')
360end
diff --git a/.config/nvim/spell/en.utf-8.add.spl b/.config/nvim/spell/en.utf-8.add.spl
new file mode 100644
index 0000000..6abbd8b
--- /dev/null
+++ b/.config/nvim/spell/en.utf-8.add.spl
Binary files differ
diff --git a/.config/nvim/spell/tr.utf-8.spl b/.config/nvim/spell/tr.utf-8.spl
new file mode 100644
index 0000000..481a918
--- /dev/null
+++ b/.config/nvim/spell/tr.utf-8.spl
Binary files differ
diff --git a/.config/nvim/startup.log b/.config/nvim/startup.log
new file mode 100644
index 0000000..7bfe047
--- /dev/null
+++ b/.config/nvim/startup.log
@@ -0,0 +1,149 @@
1
2
3times in msec
4 clock self+sourced self: sourced script
5 clock elapsed: other lines
6
7000.005 000.005: --- NVIM STARTING ---
8000.224 000.219: locale set
9000.472 000.248: inits 1
10000.484 000.012: window checked
11000.487 000.003: parsing arguments
12000.517 000.030: expanding arguments
13000.548 000.031: inits 2
14000.822 000.274: init highlight
15000.823 000.001: waiting for UI
16001.495 000.672: done waiting for UI
17001.518 000.024: init screen for UI
18001.614 000.011 000.011: sourcing /usr/share/nvim/archlinux.vim
19001.617 000.031 000.021: sourcing /etc/xdg//nvim/sysinit.vim
20010.830 003.605 003.605: sourcing /home/yigit/.local/share/nvim/site/pack/packer/start/neovim/colors/rose-pine.vim
21082.795 081.162 077.557: sourcing /home/yigit/.config/nvim/init.lua
22082.807 000.096: sourcing vimrc file(s)
23082.854 000.016 000.016: sourcing /usr/share/nvim/runtime/filetype.vim
24083.073 000.010 000.010: sourcing /home/yigit/.local/share/nvim/site/pack/packer/start/filetype.nvim/filetype.vim
25083.193 000.027 000.027: sourcing /usr/share/nvim/runtime/ftplugin.vim
26083.491 000.023 000.023: sourcing /usr/share/nvim/runtime/indent.vim
27085.270 000.195 000.195: sourcing /usr/share/nvim/runtime/syntax/syncolor.vim
28087.636 003.583 003.388: sourcing /home/yigit/.local/share/nvim/site/pack/packer/start/neovim/colors/rose-pine.vim
29088.090 004.263 000.680: sourcing /usr/share/nvim/runtime/syntax/synload.vim
30088.927 005.138 000.875: sourcing /usr/share/nvim/runtime/syntax/syntax.vim
31091.512 000.112 000.112: sourcing /usr/share/nvim/runtime/plugin/gzip.vim
32091.537 000.010 000.010: sourcing /usr/share/nvim/runtime/plugin/health.vim
33091.576 000.027 000.027: sourcing /usr/share/nvim/runtime/plugin/man.vim
34092.165 000.149 000.149: sourcing /usr/share/nvim/runtime/pack/dist/opt/matchit/plugin/matchit.vim
35092.233 000.643 000.494: sourcing /usr/share/nvim/runtime/plugin/matchit.vim
36092.353 000.107 000.107: sourcing /usr/share/nvim/runtime/plugin/matchparen.vim
37092.381 000.014 000.014: sourcing /usr/share/nvim/runtime/plugin/netrwPlugin.vim
38092.495 000.008 000.008: sourcing /home/yigit/.local/share/nvim/rplugin.vim
39092.500 000.105 000.097: sourcing /usr/share/nvim/runtime/plugin/rplugin.vim
40092.554 000.043 000.043: sourcing /usr/share/nvim/runtime/plugin/shada.vim
41092.593 000.019 000.019: sourcing /usr/share/nvim/runtime/plugin/spellfile.vim
42092.684 000.074 000.074: sourcing /usr/share/nvim/runtime/plugin/tarPlugin.vim
43092.762 000.059 000.059: sourcing /usr/share/nvim/runtime/plugin/tohtml.vim
44092.790 000.014 000.014: sourcing /usr/share/nvim/runtime/plugin/tutor.vim
45092.912 000.107 000.107: sourcing /usr/share/nvim/runtime/plugin/zipPlugin.vim
46093.384 000.397 000.397: sourcing /usr/share/vim/vimfiles/plugin/fzf.vim
47093.456 000.049 000.049: sourcing /usr/share/vim/vimfiles/plugin/redact_pass.vim
48093.997 000.019 000.019: sourcing /home/yigit/.local/share/nvim/site/pack/packer/opt/vimtex/ftdetect/cls.vim
49094.034 000.015 000.015: sourcing /home/yigit/.local/share/nvim/site/pack/packer/opt/vimtex/ftdetect/tex.vim
50094.068 000.014 000.014: sourcing /home/yigit/.local/share/nvim/site/pack/packer/opt/vimtex/ftdetect/tikz.vim
51094.073 000.556 000.508: sourcing /home/yigit/.config/nvim/plugin/packer_compiled.lua
52094.227 003.867: loading plugins
53094.882 000.211 000.211: sourcing /home/yigit/.local/share/nvim/site/pack/packer/start/beacon.nvim/plugin/beacon.vim
54095.200 000.136 000.136: sourcing /home/yigit/.local/share/nvim/site/pack/packer/start/dashboard-nvim/plugin/dashboard.vim
55095.323 000.019 000.019: sourcing /home/yigit/.local/share/nvim/site/pack/packer/start/filetype.nvim/plugin/filetype.vim
56095.445 000.033 000.033: sourcing /home/yigit/.local/share/nvim/site/pack/packer/start/float-preview.nvim/plugin/float_preview.vim
57095.546 000.014 000.014: sourcing /home/yigit/.local/share/nvim/site/pack/packer/start/goyo.vim/plugin/goyo.vim
58095.661 000.031 000.031: sourcing /home/yigit/.local/share/nvim/site/pack/packer/start/i3config.vim/ftdetect/i3config.vim
59096.222 000.015 000.015: sourcing /home/yigit/.local/share/nvim/site/pack/packer/start/indent-blankline.nvim/autoload/indent_blankline.vim
60096.295 000.569 000.553: sourcing /home/yigit/.local/share/nvim/site/pack/packer/start/indent-blankline.nvim/plugin/indent_blankline.vim
61096.427 000.031 000.031: sourcing /home/yigit/.local/share/nvim/site/pack/packer/start/limelight.vim/plugin/limelight.vim
62097.204 000.586 000.586: sourcing /home/yigit/.local/share/nvim/site/pack/packer/start/nvim-cmp/plugin/cmp.lua
63097.305 000.026 000.026: sourcing /home/yigit/.local/share/nvim/site/pack/packer/start/nvim-colorizer.lua/plugin/colorizer.vim
64097.447 000.050 000.050: sourcing /home/yigit/.local/share/nvim/site/pack/packer/start/nvim-lspconfig/plugin/lspconfig.vim
65097.606 000.044 000.044: sourcing /home/yigit/.local/share/nvim/site/pack/packer/start/nvim-tree.lua/plugin/nvim-tree-startup.lua
66098.466 000.795 000.795: sourcing /home/yigit/.local/share/nvim/site/pack/packer/start/nvim-treesitter/plugin/nvim-treesitter.vim
67098.698 000.020 000.020: sourcing /home/yigit/.local/share/nvim/site/pack/packer/start/nvim-treesitter/ftdetect/elixir.vim
68098.724 000.010 000.010: sourcing /home/yigit/.local/share/nvim/site/pack/packer/start/nvim-treesitter/ftdetect/fennel.vim
69098.751 000.012 000.012: sourcing /home/yigit/.local/share/nvim/site/pack/packer/start/nvim-treesitter/ftdetect/fish.vim
70098.778 000.012 000.012: sourcing /home/yigit/.local/share/nvim/site/pack/packer/start/nvim-treesitter/ftdetect/gdresource.vim
71098.799 000.009 000.009: sourcing /home/yigit/.local/share/nvim/site/pack/packer/start/nvim-treesitter/ftdetect/gdscript.vim
72098.823 000.008 000.008: sourcing /home/yigit/.local/share/nvim/site/pack/packer/start/nvim-treesitter/ftdetect/glimmer.vim
73098.847 000.009 000.009: sourcing /home/yigit/.local/share/nvim/site/pack/packer/start/nvim-treesitter/ftdetect/gomod.vim
74098.873 000.013 000.013: sourcing /home/yigit/.local/share/nvim/site/pack/packer/start/nvim-treesitter/ftdetect/graphql.vim
75098.900 000.014 000.014: sourcing /home/yigit/.local/share/nvim/site/pack/packer/start/nvim-treesitter/ftdetect/hcl.vim
76098.925 000.009 000.009: sourcing /home/yigit/.local/share/nvim/site/pack/packer/start/nvim-treesitter/ftdetect/heex.vim
77098.947 000.008 000.008: sourcing /home/yigit/.local/share/nvim/site/pack/packer/start/nvim-treesitter/ftdetect/hjson.vim
78098.970 000.009 000.009: sourcing /home/yigit/.local/share/nvim/site/pack/packer/start/nvim-treesitter/ftdetect/json5.vim
79098.992 000.009 000.009: sourcing /home/yigit/.local/share/nvim/site/pack/packer/start/nvim-treesitter/ftdetect/julia.vim
80099.017 000.012 000.012: sourcing /home/yigit/.local/share/nvim/site/pack/packer/start/nvim-treesitter/ftdetect/ledger.vim
81099.048 000.012 000.012: sourcing /home/yigit/.local/share/nvim/site/pack/packer/start/nvim-treesitter/ftdetect/nix.vim
82099.073 000.010 000.010: sourcing /home/yigit/.local/share/nvim/site/pack/packer/start/nvim-treesitter/ftdetect/ql.vim
83099.103 000.016 000.016: sourcing /home/yigit/.local/share/nvim/site/pack/packer/start/nvim-treesitter/ftdetect/query.vim
84099.128 000.009 000.009: sourcing /home/yigit/.local/share/nvim/site/pack/packer/start/nvim-treesitter/ftdetect/surface.vim
85099.150 000.008 000.008: sourcing /home/yigit/.local/share/nvim/site/pack/packer/start/nvim-treesitter/ftdetect/teal.vim
86099.173 000.009 000.009: sourcing /home/yigit/.local/share/nvim/site/pack/packer/start/nvim-treesitter/ftdetect/tlaplus.vim
87099.195 000.009 000.009: sourcing /home/yigit/.local/share/nvim/site/pack/packer/start/nvim-treesitter/ftdetect/yang.vim
88099.218 000.009 000.009: sourcing /home/yigit/.local/share/nvim/site/pack/packer/start/nvim-treesitter/ftdetect/zig.vim
89099.329 000.027 000.027: sourcing /home/yigit/.local/share/nvim/site/pack/packer/start/nvim-web-devicons/plugin/nvim-web-devicons.vim
90099.470 000.025 000.025: sourcing /home/yigit/.local/share/nvim/site/pack/packer/start/plenary.nvim/plugin/plenary.vim
91099.687 000.131 000.131: sourcing /home/yigit/.local/share/nvim/site/pack/packer/start/tabular/plugin/Tabular.vim
92099.959 000.167 000.167: sourcing /home/yigit/.local/share/nvim/site/pack/packer/start/targets.vim/plugin/targets.vim
93100.375 000.281 000.281: sourcing /home/yigit/.local/share/nvim/site/pack/packer/start/telescope.nvim/plugin/telescope.vim
94100.638 000.167 000.167: sourcing /home/yigit/.local/share/nvim/site/pack/packer/start/traces.vim/plugin/traces.vim
95100.793 000.054 000.054: sourcing /home/yigit/.local/share/nvim/site/pack/packer/start/turkish-deasciifier.vim/plugin/turkish-deasciifier.vim
96101.087 000.049 000.049: sourcing /home/yigit/.local/share/nvim/site/pack/packer/start/ultisnips/autoload/UltiSnips/map_keys.vim
97101.145 000.259 000.210: sourcing /home/yigit/.local/share/nvim/site/pack/packer/start/ultisnips/plugin/UltiSnips.vim
98101.224 000.014 000.014: sourcing /home/yigit/.local/share/nvim/site/pack/packer/start/ultisnips/ftdetect/snippets.vim
99101.337 000.051 000.051: sourcing /home/yigit/.local/share/nvim/site/pack/packer/start/vim-characterize/plugin/characterize.vim
100101.549 000.114 000.114: sourcing /home/yigit/.local/share/nvim/site/pack/packer/start/vim-commentary/plugin/commentary.vim
101101.786 000.031 000.031: sourcing /home/yigit/.local/share/nvim/site/pack/packer/start/vim-cutlass/autoload/cutlass.vim
102102.787 001.143 001.112: sourcing /home/yigit/.local/share/nvim/site/pack/packer/start/vim-cutlass/plugin/cutlass.vim
103103.179 000.097 000.097: sourcing /home/yigit/.local/share/nvim/site/pack/packer/start/vim-gitgutter/autoload/gitgutter/utility.vim
104103.496 000.083 000.083: sourcing /home/yigit/.local/share/nvim/site/pack/packer/start/vim-gitgutter/autoload/gitgutter/highlight.vim
105104.411 001.519 001.338: sourcing /home/yigit/.local/share/nvim/site/pack/packer/start/vim-gitgutter/plugin/gitgutter.vim
106104.688 000.163 000.163: sourcing /home/yigit/.local/share/nvim/site/pack/packer/start/vim-gutentags/plugin/gutentags.vim
107104.916 000.123 000.123: sourcing /home/yigit/.local/share/nvim/site/pack/packer/start/vim-indent-object/plugin/indent-object.vim
108105.198 000.180 000.180: sourcing /home/yigit/.local/share/nvim/site/pack/packer/start/vim-interestingwords/plugin/interestingwords.vim
109105.333 000.033 000.033: sourcing /home/yigit/.local/share/nvim/site/pack/packer/start/vim-kitty/ftdetect/kitty.vim
110105.460 000.058 000.058: sourcing /home/yigit/.local/share/nvim/site/pack/packer/start/vim-lastplace/plugin/vim-lastplace.vim
111105.580 000.017 000.017: sourcing /home/yigit/.local/share/nvim/site/pack/packer/start/vim-ledger/ftdetect/ledger.vim
112105.893 000.246 000.246: sourcing /home/yigit/.local/share/nvim/site/pack/packer/start/vim-move/plugin/move.vim
113106.049 000.058 000.058: sourcing /home/yigit/.local/share/nvim/site/pack/packer/start/vim-peekaboo/plugin/peekaboo.vim
114106.551 000.326 000.326: sourcing /home/yigit/.local/share/nvim/site/pack/packer/start/vim-sandwich/plugin/operator/sandwich.vim
115106.706 000.132 000.132: sourcing /home/yigit/.local/share/nvim/site/pack/packer/start/vim-sandwich/plugin/sandwich.vim
116106.869 000.144 000.144: sourcing /home/yigit/.local/share/nvim/site/pack/packer/start/vim-sandwich/plugin/textobj/sandwich.vim
117107.201 000.133 000.133: sourcing /home/yigit/.local/share/nvim/site/pack/packer/start/vim-slime/plugin/slime.vim
118108.396 001.102 001.102: sourcing /home/yigit/.local/share/nvim/site/pack/packer/start/vim-sneak/plugin/sneak.vim
119108.537 000.027 000.027: sourcing /home/yigit/.local/share/nvim/site/pack/packer/start/vim-snippets/plugin/vimsnippets.vim
120109.076 000.449 000.449: sourcing /home/yigit/.local/share/nvim/site/pack/packer/start/vim-speeddating/plugin/speeddating.vim
121109.458 000.278 000.278: sourcing /home/yigit/.local/share/nvim/site/pack/packer/start/vim-subversive/plugin/subversive.vim
122109.718 000.103 000.103: sourcing /home/yigit/.local/share/nvim/site/pack/packer/start/vim-swap/plugin/swap.vim
123110.055 000.094 000.094: sourcing /home/yigit/.local/share/nvim/site/pack/packer/start/vim-test/autoload/test.vim
124110.616 000.798 000.704: sourcing /home/yigit/.local/share/nvim/site/pack/packer/start/vim-test/plugin/test.vim
125116.734 006.000 006.000: sourcing /home/yigit/.local/share/nvim/site/pack/packer/start/vim-unimpaired/plugin/unimpaired.vim
126116.997 000.153 000.153: sourcing /home/yigit/.local/share/nvim/site/pack/packer/start/vim-yoink/plugin/yoink.vim
127117.506 000.249 000.249: sourcing /home/yigit/.local/share/nvim/site/pack/packer/start/vimwiki/autoload/vimwiki/vars.vim
128118.432 000.067 000.067: sourcing /home/yigit/.local/share/nvim/site/pack/packer/start/vimwiki/autoload/vimwiki/u.vim
129120.648 003.521 003.205: sourcing /home/yigit/.local/share/nvim/site/pack/packer/start/vimwiki/plugin/vimwiki.vim
130120.826 000.066 000.066: sourcing /home/yigit/.local/share/nvim/site/pack/packer/start/vista.vim/plugin/vista.vim
131120.933 005.866: loading packages
132121.106 000.106 000.106: sourcing /home/yigit/.local/share/nvim/site/pack/packer/start/ultisnips/after/plugin/UltiSnips_after.vim
133121.493 000.146 000.146: sourcing /home/yigit/.local/share/nvim/site/pack/packer/start/tabular/autoload/tabular.vim
134122.749 001.589 001.443: sourcing /home/yigit/.local/share/nvim/site/pack/packer/start/tabular/after/plugin/TabularMaps.vim
135122.962 000.026 000.026: sourcing /home/yigit/.config/nvim/after/plugin/autocmds.vim
136122.996 000.020 000.020: sourcing /home/yigit/.config/nvim/after/plugin/functions.vim
137123.238 000.227 000.227: sourcing /home/yigit/.config/nvim/after/plugin/tabular_extra.vim
138124.339 000.937 000.937: sourcing /home/yigit/.local/share/nvim/site/pack/packer/start/cmp-nvim-ultisnips/after/plugin/cmp_nvim_ultisnips.lua
139124.429 000.034 000.034: sourcing /home/yigit/.local/share/nvim/site/pack/packer/start/cmp-nvim-lsp/after/plugin/cmp_nvim_lsp.lua
140125.391 000.913 000.913: sourcing /home/yigit/.local/share/nvim/site/pack/packer/start/cmp-buffer/after/plugin/cmp_buffer.lua
141125.490 000.705: loading after plugins
142125.499 000.009: inits 3
143129.568 004.069: reading ShaDa
144130.008 000.440: opening buffers
145130.241 000.085 000.085: sourcing /home/yigit/.local/share/nvim/site/pack/packer/start/vim-gitgutter/autoload/gitgutter.vim
146130.805 000.116 000.116: sourcing /home/yigit/.local/share/nvim/site/pack/packer/start/vim-peekaboo/autoload/peekaboo.vim
147130.873 000.665: BufEnter autocommands
148130.875 000.002: editing files in windows
149131.261 000.268 000.268: sourcing /home/yigit/.local/share/nvim/site/pack/packer/start/vim-gutentags/autoload/gutentags.vim