Skip to content

Commit 98473c3

Browse files
Merge pull request #143 from StrangeRanger/dependabot/submodules/submodules/dotfiles-ba4c1d7
[Submodule Update]: Bump submodules/dotfiles from `e0d0b0a` to `ba4c1d7`
2 parents 477eaa1 + b6fd5a9 commit 98473c3

File tree

4 files changed

+15
-9
lines changed

4 files changed

+15
-9
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,12 @@ Entries under the **Removed** section indicate items removed from the entire doc
1010

1111
## Unreleased
1212

13+
## 2025-03-26
14+
15+
### Changed
16+
17+
- changed(neovim): modify default color column length
18+
1319
## 2025-03-24
1420

1521
### Changed

includes/neovim-init-files/neovim-init-non-vim-plug.vim

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
""""[ General Configurations ]"""""""""""""""""""""""""""""""""""""""""""""
1+
""""[ General Configurations ]""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
22

33

44
"""
@@ -12,7 +12,7 @@ set shiftwidth=4 " Number of spaces to use for each step of (auto)indent.
1212
set softtabstop=4 " Number of spaces that a <Tab> in the file counts for.
1313
set endofline " Keep the last line of a file if it has no newline.
1414
set fixendofline " Ensures a newline at the end of the file, if endofline is enabled.
15-
set colorcolumn=88 " Set a colored line at column 88 in every row.
15+
set colorcolumn=92 " Set a colored line at column 88 in every row.
1616

1717
"" Filetype-specific configurations.
1818
autocmd Filetype markdown,text,csv setlocal colorcolumn=0

includes/neovim-init-files/neovim-init-vim-plug.vim

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
""""[ vim-plug Configurations ]"""""""""""""""""""""""""""""""""""""""""""""""""""""""""
1+
""""[ vim-plug Configurations ]"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
22

33

44
call plug#begin(stdpath('data') . '/plugged')
@@ -28,8 +28,8 @@ Plug 'mechatroner/rainbow_csv'
2828
" patterns and provides straight-forward configuration to manage the filetype detection
2929
" rules over your preferred log files.
3030
Plug 'fei6409/log-highlight.nvim'
31-
" Library of 40+ independent Lua modules improving overall Neovim (version 0.8 and
32-
" higher) experience with minimal effort.
31+
" Library of 40+ independent Lua modules improving overall Neovim (version 0.8 and higher)
32+
" experience with minimal effort.
3333
Plug 'echasnovski/mini.nvim'
3434

3535
" Initialize plugin system
@@ -45,7 +45,7 @@ call plug#end()
4545
" PlugSnapshot - Generate script for restoring the current snapshot of the plugins
4646

4747

48-
""""[ General Configurations ]"""""""""""""""""""""""""""""""""""""""""""""
48+
""""[ General Configurations ]""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
4949

5050

5151
"""
@@ -59,7 +59,7 @@ set shiftwidth=4 " Number of spaces to use for each step of (auto)indent.
5959
set softtabstop=4 " Number of spaces that a <Tab> in the file counts for.
6060
set endofline " Keep the last line of a file if it has no newline.
6161
set fixendofline " Ensures a newline at the end of the file, if endofline is enabled.
62-
set colorcolumn=88 " Set a colored line at column 88 in every row.
62+
set colorcolumn=92 " Set a colored line at column 88 in every row.
6363

6464
"" Filetype-specific configurations.
6565
autocmd Filetype markdown,text,csv setlocal colorcolumn=0
@@ -71,7 +71,7 @@ autocmd Filetype lua setlocal tabstop=3 shiftwidth=3 softtabstop=3
7171
autocmd Filetype html,css,vue,javascript,typescript setlocal colorcolumn=100 tabstop=2 shiftwidth=2 softtabstop=2
7272

7373

74-
""""[ vim-plug Plugin Configurations ]""""""""""""""""""""""""""""""""""""""""""""""""""
74+
""""[ vim-plug Plugin Configurations ]""""""""""""""""""""""""""""""""""""""""""""""""""""""
7575

7676

7777
" Font: Power Line Font

0 commit comments

Comments
 (0)