Skip to content

Commit 1212e90

Browse files
author
Charles Chiu
committed
style: stylua check
1 parent bbbb04f commit 1212e90

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

after/ftplugin/c.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
vim.opt_local.commentstring = '//%s'
1+
vim.opt_local.commentstring = "//%s"
22
vim.opt_local.autoindent = true
33
vim.opt_local.smartindent = true
44
vim.opt_local.shiftwidth = 2

after/ftplugin/cpp.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
vim.opt_local.commentstring = '//%s'
1+
vim.opt_local.commentstring = "//%s"
22
vim.opt_local.expandtab = true
33
vim.opt_local.shiftwidth = 2
44
vim.opt_local.softtabstop = 2

after/ftplugin/go.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
vim.opt_local.commentstring = '//%s'
1+
vim.opt_local.commentstring = "//%s"
22
vim.opt_local.expandtab = false
33
vim.opt_local.shiftwidth = 4
44
vim.opt_local.softtabstop = 4

after/ftplugin/json.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
vim.opt_local.autoindent = true
22
vim.opt_local.conceallevel = 0
33
vim.opt_local.expandtab = true
4-
vim.opt_local.foldmethod = 'syntax'
5-
vim.opt_local.formatoptions = 'tcq2l'
4+
vim.opt_local.foldmethod = "syntax"
5+
vim.opt_local.formatoptions = "tcq2l"
66
vim.opt_local.shiftwidth = 4
77
vim.opt_local.softtabstop = 4
88
vim.opt_local.tabstop = 8

after/ftplugin/rust.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
vim.opt_local.commentstring = '//%s'
1+
vim.opt_local.commentstring = "//%s"
22
vim.opt_local.shiftwidth = 4
33
vim.opt_local.softtabstop = 4
44
vim.opt_local.smartindent = true

0 commit comments

Comments
 (0)